pub struct PoolEntry {
pub name: String,
pub path: String,
pub branch: String,
pub status: WorktreeStatus,
pub created_at: u64,
pub acquired_at: Option<u64>,
pub acquired_by: Option<u32>,
}Expand description
A single worktree entry in the pool
Fields§
§name: String§path: String§branch: String§status: WorktreeStatus§created_at: u64§acquired_at: Option<u64>§acquired_by: Option<u32>Trait Implementations§
Source§impl<'de> Deserialize<'de> for PoolEntry
impl<'de> Deserialize<'de> for PoolEntry
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 PoolEntry
impl RefUnwindSafe for PoolEntry
impl Send for PoolEntry
impl Sync for PoolEntry
impl Unpin for PoolEntry
impl UnsafeUnpin for PoolEntry
impl UnwindSafe for PoolEntry
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