pub enum WorktreeSessionFact {
None,
Available {
session_id: String,
},
Claimed {
session_id: String,
},
}Expand description
Current worktree session candidate after claim checks.
Variants§
Trait Implementations§
Source§impl Clone for WorktreeSessionFact
impl Clone for WorktreeSessionFact
Source§fn clone(&self) -> WorktreeSessionFact
fn clone(&self) -> WorktreeSessionFact
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 WorktreeSessionFact
impl Debug for WorktreeSessionFact
Source§impl Default for WorktreeSessionFact
impl Default for WorktreeSessionFact
Source§fn default() -> WorktreeSessionFact
fn default() -> WorktreeSessionFact
Returns the “default value” for a type. Read more
impl Eq for WorktreeSessionFact
Source§impl PartialEq for WorktreeSessionFact
impl PartialEq for WorktreeSessionFact
impl StructuralPartialEq for WorktreeSessionFact
Auto Trait Implementations§
impl Freeze for WorktreeSessionFact
impl RefUnwindSafe for WorktreeSessionFact
impl Send for WorktreeSessionFact
impl Sync for WorktreeSessionFact
impl Unpin for WorktreeSessionFact
impl UnsafeUnpin for WorktreeSessionFact
impl UnwindSafe for WorktreeSessionFact
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