pub struct DiffChangedSymbol {
pub symbol: SymbolRecord,
pub added_lines: usize,
pub removed_lines: usize,
}Fields§
§symbol: SymbolRecord§added_lines: usize§removed_lines: usizeTrait Implementations§
Source§impl Clone for DiffChangedSymbol
impl Clone for DiffChangedSymbol
Source§fn clone(&self) -> DiffChangedSymbol
fn clone(&self) -> DiffChangedSymbol
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 DiffChangedSymbol
impl Debug for DiffChangedSymbol
Source§impl<'de> Deserialize<'de> for DiffChangedSymbol
impl<'de> Deserialize<'de> for DiffChangedSymbol
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 DiffChangedSymbol
impl RefUnwindSafe for DiffChangedSymbol
impl Send for DiffChangedSymbol
impl Sync for DiffChangedSymbol
impl Unpin for DiffChangedSymbol
impl UnsafeUnpin for DiffChangedSymbol
impl UnwindSafe for DiffChangedSymbol
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