pub struct NyarChunk {
pub code: Vec<u8>,
pub locals: u16,
pub upvalues: u16,
pub max_stack: u16,
pub handlers: Vec<NyarHandler>,
pub lines: Vec<(u32, u32)>,
}Fields§
§code: Vec<u8>§locals: u16§upvalues: u16§max_stack: u16§handlers: Vec<NyarHandler>§lines: Vec<(u32, u32)>Trait Implementations§
Source§impl<'de> Deserialize<'de> for NyarChunk
impl<'de> Deserialize<'de> for NyarChunk
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NyarChunk
impl RefUnwindSafe for NyarChunk
impl Send for NyarChunk
impl Sync for NyarChunk
impl Unpin for NyarChunk
impl UnsafeUnpin for NyarChunk
impl UnwindSafe for NyarChunk
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