pub enum ChangeDetail {
SignatureChanged {
old: Option<String>,
new: Option<String>,
},
VisibilityChanged {
old: Visibility,
new: Visibility,
},
Moved {
old_file: String,
old_line: u32,
new_file: String,
new_line: u32,
},
}Expand description
What specifically changed about a symbol.
Variants§
Trait Implementations§
Source§impl Clone for ChangeDetail
impl Clone for ChangeDetail
Source§fn clone(&self) -> ChangeDetail
fn clone(&self) -> ChangeDetail
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 ChangeDetail
impl Debug for ChangeDetail
Auto Trait Implementations§
impl Freeze for ChangeDetail
impl RefUnwindSafe for ChangeDetail
impl Send for ChangeDetail
impl Sync for ChangeDetail
impl Unpin for ChangeDetail
impl UnsafeUnpin for ChangeDetail
impl UnwindSafe for ChangeDetail
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