pub struct Merged {
pub text: String,
pub kind: Kind,
pub guarded: bool,
pub branches: usize,
pub defined_the_macro: bool,
pub problems: Vec<String>,
}Expand description
One merged header.
Fields§
§text: StringThe text to write.
kind: KindWhat had to be done to get it.
guarded: boolWhether at least one release does not have this header at all.
branches: usizeHow many conditionals of ours are in it, not counting the guard.
defined_the_macro: boolWhether glibc’s own definition of __GLIBC_MINOR__ was replaced in it.
problems: Vec<String>What is wrong with it, which is empty for every file in a tree worth shipping.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Merged
impl RefUnwindSafe for Merged
impl Send for Merged
impl Sync for Merged
impl Unpin for Merged
impl UnsafeUnpin for Merged
impl UnwindSafe for Merged
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