pub struct DeadSymbol {
pub qualified_name: String,
pub kind: SymbolKind,
pub file_path: String,
pub line: usize,
pub visibility: Visibility,
}Fields§
§qualified_name: String§kind: SymbolKind§file_path: String§line: usize§visibility: VisibilityTrait Implementations§
Source§impl Clone for DeadSymbol
impl Clone for DeadSymbol
Source§fn clone(&self) -> DeadSymbol
fn clone(&self) -> DeadSymbol
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 DeadSymbol
impl Debug for DeadSymbol
Source§impl<'de> Deserialize<'de> for DeadSymbol
impl<'de> Deserialize<'de> for DeadSymbol
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 DeadSymbol
impl RefUnwindSafe for DeadSymbol
impl Send for DeadSymbol
impl Sync for DeadSymbol
impl Unpin for DeadSymbol
impl UnsafeUnpin for DeadSymbol
impl UnwindSafe for DeadSymbol
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