pub enum SimpleDerivation {
Restriction(Box<Restriction>),
List(Box<List>),
Union(Box<Union>),
}Expand description
Simple derivation.
Variants§
Restriction(Box<Restriction>)
Restriction type.
List(Box<List>)
List type.
Union(Box<Union>)
Union type.
Trait Implementations§
Source§impl Clone for SimpleDerivation
impl Clone for SimpleDerivation
Source§fn clone(&self) -> SimpleDerivation
fn clone(&self) -> SimpleDerivation
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 moreAuto Trait Implementations§
impl Freeze for SimpleDerivation
impl RefUnwindSafe for SimpleDerivation
impl Send for SimpleDerivation
impl Sync for SimpleDerivation
impl Unpin for SimpleDerivation
impl UnwindSafe for SimpleDerivation
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