pub struct StatusRow {
pub path: String,
pub kind: StatusKind,
}Expand description
One status row. path is the GATEWAY member path for
manifest/gateway rows (the manifest’s keys) and the local
tree-relative path for StatusKind::Untracked rows.
Fields§
§path: StringThe member path the row is about.
kind: StatusKindThe verdict — PUSH-RELATIVE (see StatusKind).
Trait Implementations§
impl StructuralPartialEq for StatusRow
Auto Trait Implementations§
impl Freeze for StatusRow
impl RefUnwindSafe for StatusRow
impl Send for StatusRow
impl Sync for StatusRow
impl Unpin for StatusRow
impl UnsafeUnpin for StatusRow
impl UnwindSafe for StatusRow
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