pub struct WorkspaceComparison {
pub item: String,
pub contexts: Vec<WorkspaceComparisonEntry>,
}Expand description
Side-by-side comparison of an item across workspace contexts.
Fields§
§item: StringThe item being compared.
contexts: Vec<WorkspaceComparisonEntry>Comparison results per context.
Trait Implementations§
Source§impl Clone for WorkspaceComparison
impl Clone for WorkspaceComparison
Source§fn clone(&self) -> WorkspaceComparison
fn clone(&self) -> WorkspaceComparison
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 WorkspaceComparison
impl Debug for WorkspaceComparison
Source§impl<'de> Deserialize<'de> for WorkspaceComparison
impl<'de> Deserialize<'de> for WorkspaceComparison
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 WorkspaceComparison
impl RefUnwindSafe for WorkspaceComparison
impl Send for WorkspaceComparison
impl Sync for WorkspaceComparison
impl Unpin for WorkspaceComparison
impl UnsafeUnpin for WorkspaceComparison
impl UnwindSafe for WorkspaceComparison
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