pub struct DirtyWorkspace {
pub id: i64,
pub path: String,
}Expand description
A workspace with uncommitted JJ changes blocking archive.
Fields§
§id: i64§path: StringTrait Implementations§
Source§impl Clone for DirtyWorkspace
impl Clone for DirtyWorkspace
Source§fn clone(&self) -> DirtyWorkspace
fn clone(&self) -> DirtyWorkspace
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 DirtyWorkspace
impl Debug for DirtyWorkspace
impl Eq for DirtyWorkspace
Source§impl PartialEq for DirtyWorkspace
impl PartialEq for DirtyWorkspace
Source§fn eq(&self, other: &DirtyWorkspace) -> bool
fn eq(&self, other: &DirtyWorkspace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DirtyWorkspace
Auto Trait Implementations§
impl Freeze for DirtyWorkspace
impl RefUnwindSafe for DirtyWorkspace
impl Send for DirtyWorkspace
impl Sync for DirtyWorkspace
impl Unpin for DirtyWorkspace
impl UnsafeUnpin for DirtyWorkspace
impl UnwindSafe for DirtyWorkspace
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