pub enum IntersticeTypeDef {
Struct {
name: String,
fields: Vec<FieldDef>,
},
Enum {
name: String,
variants: Vec<FieldDef>,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IntersticeTypeDef
impl Clone for IntersticeTypeDef
Source§fn clone(&self) -> IntersticeTypeDef
fn clone(&self) -> IntersticeTypeDef
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 IntersticeTypeDef
impl Debug for IntersticeTypeDef
Source§impl<'de> Deserialize<'de> for IntersticeTypeDef
impl<'de> Deserialize<'de> for IntersticeTypeDef
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 IntersticeTypeDef
impl RefUnwindSafe for IntersticeTypeDef
impl Send for IntersticeTypeDef
impl Sync for IntersticeTypeDef
impl Unpin for IntersticeTypeDef
impl UnsafeUnpin for IntersticeTypeDef
impl UnwindSafe for IntersticeTypeDef
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