pub struct ConfUnit {
pub directives: Vec<ConfDirective>,
pub comments: Vec<ConfComment>,
}Expand description
Represents a configuration unit.
Fields§
§directives: Vec<ConfDirective>The root directives of the configuration.
comments: Vec<ConfComment>The comments in the configuration.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConfUnit
impl RefUnwindSafe for ConfUnit
impl Send for ConfUnit
impl Sync for ConfUnit
impl Unpin for ConfUnit
impl UnsafeUnpin for ConfUnit
impl UnwindSafe for ConfUnit
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