pub enum AddSubtypes {
Add(Add),
}Variants§
Trait Implementations§
Source§impl Clone for AddSubtypes
impl Clone for AddSubtypes
Source§fn clone(&self) -> AddSubtypes
fn clone(&self) -> AddSubtypes
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 AddSubtypes
impl Debug for AddSubtypes
Source§impl<'de> Deserialize<'de> for AddSubtypes
impl<'de> Deserialize<'de> for AddSubtypes
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
Source§impl From<AddSubtypes> for Add
impl From<AddSubtypes> for Add
Source§fn from(value: AddSubtypes) -> Self
fn from(value: AddSubtypes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AddSubtypes
impl PartialEq for AddSubtypes
Source§impl Serialize for AddSubtypes
impl Serialize for AddSubtypes
impl StructuralPartialEq for AddSubtypes
Auto Trait Implementations§
impl Freeze for AddSubtypes
impl RefUnwindSafe for AddSubtypes
impl Send for AddSubtypes
impl Sync for AddSubtypes
impl Unpin for AddSubtypes
impl UnwindSafe for AddSubtypes
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