Struct rpgmxp_types::script::ScriptList
pub struct ScriptList {
pub scripts: Vec<Script>,
}
Expand description
A list of scripts
Fields§
§scripts: Vec<Script>
Scripts
Trait Implementations§
§impl Debug for ScriptList
impl Debug for ScriptList
§impl<'a> FromValue<'a> for ScriptList
impl<'a> FromValue<'a> for ScriptList
§fn from_value(
ctx: &FromValueContext<'a>,
value: &Value,
) -> Result<ScriptList, FromValueError>
fn from_value( ctx: &FromValueContext<'a>, value: &Value, ) -> Result<ScriptList, FromValueError>
Create this type from the given value from the [
ValueArena
]. Read more§impl IntoValue for ScriptList
impl IntoValue for ScriptList
§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 ScriptList
impl RefUnwindSafe for ScriptList
impl Send for ScriptList
impl Sync for ScriptList
impl Unpin for ScriptList
impl UnwindSafe for ScriptList
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