pub struct Record {
pub path: String,
pub kind: Kind,
pub branches: usize,
pub guarded: bool,
pub releases: usize,
}Expand description
What one file became.
Fields§
§path: StringWhere it is in the tree.
kind: KindWhat had to be done to it.
branches: usizeHow many conditionals of ours are in it.
guarded: boolWhether some release does not have it.
releases: usizeHow many releases have it.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnsafeUnpin for Record
impl UnwindSafe for Record
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