pub enum WorkspaceLifecycle {
NotRequested,
Requested,
Ready,
Merged,
}Expand description
Lifecycle of a TODO’s JJ workspace.
Variants§
Trait Implementations§
Source§impl Clone for WorkspaceLifecycle
impl Clone for WorkspaceLifecycle
Source§fn clone(&self) -> WorkspaceLifecycle
fn clone(&self) -> WorkspaceLifecycle
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 moreimpl Copy for WorkspaceLifecycle
Source§impl Debug for WorkspaceLifecycle
impl Debug for WorkspaceLifecycle
impl Eq for WorkspaceLifecycle
Source§impl PartialEq for WorkspaceLifecycle
impl PartialEq for WorkspaceLifecycle
Source§fn eq(&self, other: &WorkspaceLifecycle) -> bool
fn eq(&self, other: &WorkspaceLifecycle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WorkspaceLifecycle
impl Serialize for WorkspaceLifecycle
impl StructuralPartialEq for WorkspaceLifecycle
Auto Trait Implementations§
impl Freeze for WorkspaceLifecycle
impl RefUnwindSafe for WorkspaceLifecycle
impl Send for WorkspaceLifecycle
impl Sync for WorkspaceLifecycle
impl Unpin for WorkspaceLifecycle
impl UnsafeUnpin for WorkspaceLifecycle
impl UnwindSafe for WorkspaceLifecycle
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