pub enum AuthorizedKeyEntry {
Valid {
key: PublicKey,
},
Invalid {
key: String,
},
}
Variants§
Trait Implementations§
Source§impl Clone for AuthorizedKeyEntry
impl Clone for AuthorizedKeyEntry
Source§fn clone(&self) -> AuthorizedKeyEntry
fn clone(&self) -> AuthorizedKeyEntry
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 moreAuto Trait Implementations§
impl Freeze for AuthorizedKeyEntry
impl RefUnwindSafe for AuthorizedKeyEntry
impl Send for AuthorizedKeyEntry
impl Sync for AuthorizedKeyEntry
impl Unpin for AuthorizedKeyEntry
impl UnwindSafe for AuthorizedKeyEntry
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