pub struct Directive {
pub key: String,
pub value: String,
pub raw_line: String,
pub is_non_directive: bool,
}Expand description
A directive line inside a Host block.
Fields§
§key: StringThe directive key (e.g., “HostName”, “User”, “Port”).
value: StringThe directive value.
raw_line: StringThe original raw line (preserves indentation, inline comments).
is_non_directive: boolWhether this is a comment-only or blank line inside a host block.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Directive
impl RefUnwindSafe for Directive
impl Send for Directive
impl Sync for Directive
impl Unpin for Directive
impl UnsafeUnpin for Directive
impl UnwindSafe for Directive
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