pub struct WorkspaceComparisonEntry {
pub context_label: String,
pub found: bool,
pub count: usize,
pub details: Option<String>,
}Expand description
A single context’s comparison entry.
Fields§
§context_label: StringLabel of the context.
found: boolWhether the item was found.
count: usizeNumber of occurrences.
details: Option<String>Optional details string.
Trait Implementations§
Source§impl Clone for WorkspaceComparisonEntry
impl Clone for WorkspaceComparisonEntry
Source§fn clone(&self) -> WorkspaceComparisonEntry
fn clone(&self) -> WorkspaceComparisonEntry
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 WorkspaceComparisonEntry
impl Debug for WorkspaceComparisonEntry
Source§impl<'de> Deserialize<'de> for WorkspaceComparisonEntry
impl<'de> Deserialize<'de> for WorkspaceComparisonEntry
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 WorkspaceComparisonEntry
impl RefUnwindSafe for WorkspaceComparisonEntry
impl Send for WorkspaceComparisonEntry
impl Sync for WorkspaceComparisonEntry
impl Unpin for WorkspaceComparisonEntry
impl UnsafeUnpin for WorkspaceComparisonEntry
impl UnwindSafe for WorkspaceComparisonEntry
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