pub struct NyarModule {
pub name: QualifiedName,
pub version: u16,
pub flags: u32,
pub timestamp: u64,
pub constants: Vec<NyarConstant>,
pub effects: Vec<QualifiedName>,
pub chunks: Vec<NyarChunk>,
pub classes: Vec<NyarClassInfo>,
pub traits: Vec<NyarTraitInfo>,
pub impls: Vec<NyarImplInfo>,
pub imports: Vec<NyarImportInfo>,
pub exports: Vec<NyarExportInfo>,
}Fields§
§name: QualifiedName§version: u16§flags: u32§timestamp: u64§constants: Vec<NyarConstant>§effects: Vec<QualifiedName>§chunks: Vec<NyarChunk>§classes: Vec<NyarClassInfo>§traits: Vec<NyarTraitInfo>§impls: Vec<NyarImplInfo>§imports: Vec<NyarImportInfo>§exports: Vec<NyarExportInfo>Trait Implementations§
Source§impl Clone for NyarModule
impl Clone for NyarModule
Source§fn clone(&self) -> NyarModule
fn clone(&self) -> NyarModule
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NyarModule
impl Debug for NyarModule
Source§impl Default for NyarModule
impl Default for NyarModule
Source§impl<'de> Deserialize<'de> for NyarModule
impl<'de> Deserialize<'de> for NyarModule
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 NyarModule
impl RefUnwindSafe for NyarModule
impl Send for NyarModule
impl Sync for NyarModule
impl Unpin for NyarModule
impl UnsafeUnpin for NyarModule
impl UnwindSafe for NyarModule
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