pub enum KeyringKind {
Unknown,
None,
GPG,
PKCS7,
JCAT,
}
Expand description
Describes the type of keyring to use with a remote.
Variants§
Trait Implementations§
Source§impl Clone for KeyringKind
impl Clone for KeyringKind
Source§fn clone(&self) -> KeyringKind
fn clone(&self) -> KeyringKind
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for KeyringKind
impl Debug for KeyringKind
Source§impl Default for KeyringKind
impl Default for KeyringKind
Source§impl From<u8> for KeyringKind
impl From<u8> for KeyringKind
Source§fn from(value: u8) -> KeyringKind
fn from(value: u8) -> KeyringKind
Converts to this type from the input type.
Source§impl PartialEq for KeyringKind
impl PartialEq for KeyringKind
impl Copy for KeyringKind
impl Eq for KeyringKind
impl StructuralPartialEq for KeyringKind
Auto Trait Implementations§
impl Freeze for KeyringKind
impl RefUnwindSafe for KeyringKind
impl Send for KeyringKind
impl Sync for KeyringKind
impl Unpin for KeyringKind
impl UnwindSafe for KeyringKind
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