pub struct SymbolChange {
pub name: String,
pub kind: SymbolKind,
pub file: String,
pub line: u32,
pub parent_name: Option<String>,
pub old_signature: Option<String>,
pub new_signature: Option<String>,
}Fields§
§name: String§kind: SymbolKind§file: String§line: u32§parent_name: Option<String>§old_signature: Option<String>§new_signature: Option<String>Trait Implementations§
Source§impl Debug for SymbolChange
impl Debug for SymbolChange
Auto Trait Implementations§
impl Freeze for SymbolChange
impl RefUnwindSafe for SymbolChange
impl Send for SymbolChange
impl Sync for SymbolChange
impl Unpin for SymbolChange
impl UnsafeUnpin for SymbolChange
impl UnwindSafe for SymbolChange
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