pub enum SymbolGraphFocus {
Symbol {
symbol: Box<SymbolDto>,
},
File {
path: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for SymbolGraphFocus
impl Clone for SymbolGraphFocus
Source§fn clone(&self) -> SymbolGraphFocus
fn clone(&self) -> SymbolGraphFocus
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 Debug for SymbolGraphFocus
impl Debug for SymbolGraphFocus
Source§impl<'de> Deserialize<'de> for SymbolGraphFocus
impl<'de> Deserialize<'de> for SymbolGraphFocus
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
impl Eq for SymbolGraphFocus
Source§impl PartialEq for SymbolGraphFocus
impl PartialEq for SymbolGraphFocus
Source§impl Serialize for SymbolGraphFocus
impl Serialize for SymbolGraphFocus
impl StructuralPartialEq for SymbolGraphFocus
Auto Trait Implementations§
impl Freeze for SymbolGraphFocus
impl RefUnwindSafe for SymbolGraphFocus
impl Send for SymbolGraphFocus
impl Sync for SymbolGraphFocus
impl Unpin for SymbolGraphFocus
impl UnsafeUnpin for SymbolGraphFocus
impl UnwindSafe for SymbolGraphFocus
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