pub struct AuthorizedKeySet {
pub filename: String,
pub disabled: bool,
pub keys: Vec<AuthorizedKeyEntry>,
}
Fields§
§filename: String
§disabled: bool
§keys: Vec<AuthorizedKeyEntry>
Trait Implementations§
Source§impl Clone for AuthorizedKeySet
impl Clone for AuthorizedKeySet
Source§fn clone(&self) -> AuthorizedKeySet
fn clone(&self) -> AuthorizedKeySet
Returns a copy 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 AuthorizedKeySet
impl Debug for AuthorizedKeySet
Source§impl Default for AuthorizedKeySet
impl Default for AuthorizedKeySet
Source§fn default() -> AuthorizedKeySet
fn default() -> AuthorizedKeySet
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AuthorizedKeySet
impl RefUnwindSafe for AuthorizedKeySet
impl Send for AuthorizedKeySet
impl Sync for AuthorizedKeySet
impl Unpin for AuthorizedKeySet
impl UnwindSafe for AuthorizedKeySet
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