pub struct InheritedHints {
pub proxy_jump: Option<(String, String)>,
pub user: Option<(String, String)>,
pub identity_file: Option<(String, String)>,
}Expand description
Inherited field hints from matching patterns. Each field is Some((value, source_pattern)) when a pattern provides that directive, None otherwise.
Fields§
§proxy_jump: Option<(String, String)>§user: Option<(String, String)>§identity_file: Option<(String, String)>Trait Implementations§
Source§impl Clone for InheritedHints
impl Clone for InheritedHints
Source§fn clone(&self) -> InheritedHints
fn clone(&self) -> InheritedHints
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InheritedHints
impl Debug for InheritedHints
Source§impl Default for InheritedHints
impl Default for InheritedHints
Source§fn default() -> InheritedHints
fn default() -> InheritedHints
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InheritedHints
impl RefUnwindSafe for InheritedHints
impl Send for InheritedHints
impl Sync for InheritedHints
impl Unpin for InheritedHints
impl UnsafeUnpin for InheritedHints
impl UnwindSafe for InheritedHints
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more