pub struct FlatEntry {
pub key: String,
pub value: String,
pub comments: Comments,
}Expand description
One flattened key = value line with the comments it carries - the shape
the flat emitters (INI sections, .env) place comments through.
Fields§
§key: String§value: String§comments: CommentsTrait Implementations§
impl StructuralPartialEq for FlatEntry
Auto Trait Implementations§
impl Freeze for FlatEntry
impl RefUnwindSafe for FlatEntry
impl Send for FlatEntry
impl Sync for FlatEntry
impl Unpin for FlatEntry
impl UnsafeUnpin for FlatEntry
impl UnwindSafe for FlatEntry
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