pub enum SignKey {
Ed25519(SigningKey),
AgentEd25519(VerifyingKey),
}Expand description
A SSH signing key.
This may hold the private key part locally or potentially send the signing requests to an SSH agent or other entity.
Variants§
Ed25519(SigningKey)
AgentEd25519(VerifyingKey)
Implementations§
Trait Implementations§
impl Eq for SignKey
impl StructuralPartialEq for SignKey
Auto Trait Implementations§
impl Freeze for SignKey
impl RefUnwindSafe for SignKey
impl Send for SignKey
impl Sync for SignKey
impl Unpin for SignKey
impl UnwindSafe for SignKey
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