pub struct RawField {
pub key: String,
pub value: String,
}Expand description
Minimally processed Key-Value pair from the underlying Debian RFC2822-like file.
In general, using this directly is a bad idea. I’ve left it exported to help get consumers out of a bind, but that doesn’t mean I won’t regret that decision.
Fields§
§key: StringKey name for the Field
value: StringValue of the field
Trait Implementations§
impl StructuralPartialEq for RawField
Auto Trait Implementations§
impl Freeze for RawField
impl RefUnwindSafe for RawField
impl Send for RawField
impl Sync for RawField
impl Unpin for RawField
impl UnwindSafe for RawField
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