enum ParsedLine<'s> {
KeyValue {
key: &'s str,
value: &'s str,
},
Comment(&'s str),
}
Expand description
Representation of a parsed line.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<'s> Freeze for ParsedLine<'s>
impl<'s> RefUnwindSafe for ParsedLine<'s>
impl<'s> Send for ParsedLine<'s>
impl<'s> Sync for ParsedLine<'s>
impl<'s> Unpin for ParsedLine<'s>
impl<'s> UnwindSafe for ParsedLine<'s>
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