pub struct CompressedScriptList {
pub scripts: Vec<CompressedScript>,
}
Expand description
A list of compressed scripts
Fields§
§scripts: Vec<CompressedScript>
Scripts
Trait Implementations§
Source§impl Debug for CompressedScriptList
impl Debug for CompressedScriptList
Source§impl<'a> FromValue<'a> for CompressedScriptList
impl<'a> FromValue<'a> for CompressedScriptList
Source§fn from_value(
ctx: &FromValueContext<'a>,
value: &Value,
) -> Result<Self, FromValueError>
fn from_value( ctx: &FromValueContext<'a>, value: &Value, ) -> Result<Self, FromValueError>
Create this type from the given value from the [
ValueArena
]. Read moreSource§impl IntoValue for CompressedScriptList
impl IntoValue for CompressedScriptList
Source§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