pub enum SshAgentIdentity {
All,
Pubkey(Vec<u8>),
}
Expand description
Ssh agent identity
Variants§
Trait Implementations§
Source§impl Clone for SshAgentIdentity
impl Clone for SshAgentIdentity
Source§fn clone(&self) -> SshAgentIdentity
fn clone(&self) -> SshAgentIdentity
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 SshAgentIdentity
impl Debug for SshAgentIdentity
Source§impl From<&[u8]> for SshAgentIdentity
impl From<&[u8]> for SshAgentIdentity
Source§impl PartialEq for SshAgentIdentity
impl PartialEq for SshAgentIdentity
impl Eq for SshAgentIdentity
impl StructuralPartialEq for SshAgentIdentity
Auto Trait Implementations§
impl Freeze for SshAgentIdentity
impl RefUnwindSafe for SshAgentIdentity
impl Send for SshAgentIdentity
impl Sync for SshAgentIdentity
impl Unpin for SshAgentIdentity
impl UnwindSafe for SshAgentIdentity
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