pub struct PathWalkLine {
pub batch: u64,
pub object_kind: ObjectKind,
pub path: String,
pub oid: ObjectId,
pub uninteresting: bool,
}Expand description
One line of test-tool path-walk output (excluding trailing summary lines).
Fields§
§batch: u64§object_kind: ObjectKind§path: String§oid: ObjectId§uninteresting: boolTrait Implementations§
Source§impl Clone for PathWalkLine
impl Clone for PathWalkLine
Source§fn clone(&self) -> PathWalkLine
fn clone(&self) -> PathWalkLine
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PathWalkLine
impl RefUnwindSafe for PathWalkLine
impl Send for PathWalkLine
impl Sync for PathWalkLine
impl Unpin for PathWalkLine
impl UnsafeUnpin for PathWalkLine
impl UnwindSafe for PathWalkLine
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