Struct rpgmxp_types::script::CompressedScriptList
pub struct CompressedScriptList {
pub scripts: Vec<CompressedScript>,
}
Expand description
A list of compressed scripts
Fields§
§scripts: Vec<CompressedScript>
Scripts
Trait Implementations§
§impl Debug for CompressedScriptList
impl Debug for CompressedScriptList
§impl<'a> FromValue<'a> for CompressedScriptList
impl<'a> FromValue<'a> for CompressedScriptList
§fn from_value(
ctx: &FromValueContext<'a>,
value: &Value,
) -> Result<CompressedScriptList, FromValueError>
fn from_value( ctx: &FromValueContext<'a>, value: &Value, ) -> Result<CompressedScriptList, FromValueError>
Create this type from the given value from the [
ValueArena
]. Read more§impl IntoValue for CompressedScriptList
impl IntoValue for CompressedScriptList
§fn into_value(
self,
arena: &mut ValueArena,
) -> Result<ValueHandle, IntoValueError>
fn into_value( self, arena: &mut ValueArena, ) -> Result<ValueHandle, IntoValueError>
Turn this type into a Ruby Value.
Auto Trait Implementations§
impl Freeze for CompressedScriptList
impl RefUnwindSafe for CompressedScriptList
impl Send for CompressedScriptList
impl Sync for CompressedScriptList
impl Unpin for CompressedScriptList
impl UnwindSafe for CompressedScriptList
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more