pub enum DeclarationOrDeclarationLinkArray {
Declaration(Declaration),
DeclarationLinkArray(Vec<DeclarationLink>),
}Variants§
Declaration(Declaration)
DeclarationLinkArray(Vec<DeclarationLink>)
Trait Implementations§
Source§impl Clone for DeclarationOrDeclarationLinkArray
impl Clone for DeclarationOrDeclarationLinkArray
Source§fn clone(&self) -> DeclarationOrDeclarationLinkArray
fn clone(&self) -> DeclarationOrDeclarationLinkArray
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for DeclarationOrDeclarationLinkArray
impl<'de> Deserialize<'de> for DeclarationOrDeclarationLinkArray
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 PartialEq for DeclarationOrDeclarationLinkArray
impl PartialEq for DeclarationOrDeclarationLinkArray
Source§fn eq(&self, other: &DeclarationOrDeclarationLinkArray) -> bool
fn eq(&self, other: &DeclarationOrDeclarationLinkArray) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeclarationOrDeclarationLinkArray
Auto Trait Implementations§
impl Freeze for DeclarationOrDeclarationLinkArray
impl RefUnwindSafe for DeclarationOrDeclarationLinkArray
impl Send for DeclarationOrDeclarationLinkArray
impl Sync for DeclarationOrDeclarationLinkArray
impl Unpin for DeclarationOrDeclarationLinkArray
impl UnsafeUnpin for DeclarationOrDeclarationLinkArray
impl UnwindSafe for DeclarationOrDeclarationLinkArray
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