pub struct IStructDeclaration {
    pub fields: IndexMap<IIdent, IElementaryType>,
    pub fns: IndexMap<(ITrait, IIdent), IFnDeclaration>,
}Fields§
§fields: IndexMap<IIdent, IElementaryType>§fns: IndexMap<(ITrait, IIdent), IFnDeclaration>Trait Implementations§
Source§impl Clone for IStructDeclaration
 
impl Clone for IStructDeclaration
Source§fn clone(&self) -> IStructDeclaration
 
fn clone(&self) -> IStructDeclaration
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 IStructDeclaration
 
impl Debug for IStructDeclaration
Source§impl<'de> Deserialize<'de> for IStructDeclaration
 
impl<'de> Deserialize<'de> for IStructDeclaration
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 IStructDeclaration
impl RefUnwindSafe for IStructDeclaration
impl Send for IStructDeclaration
impl Sync for IStructDeclaration
impl Unpin for IStructDeclaration
impl UnwindSafe for IStructDeclaration
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