[−][src]Struct sequoia_openpgp::packet::KeyFlags
Describes how a key may be used, and stores additional information.
Methods
impl KeyFlags
[src]
pub fn new(bits: &[u8]) -> Self
[src]
Creates a new instance from bits
.
pub fn can_certify(&self) -> bool
[src]
This key may be used to certify other keys.
pub fn set_certify(self, v: bool) -> Self
[src]
Sets whether or not this key may be used to certify other keys.
pub fn can_sign(&self) -> bool
[src]
This key may be used to sign data.
pub fn set_sign(self, v: bool) -> Self
[src]
Sets whether or not this key may be used to sign data.
pub fn can_encrypt_for_transport(&self) -> bool
[src]
This key may be used to encrypt communications.
pub fn set_encrypt_for_transport(self, v: bool) -> Self
[src]
Sets whether or not this key may be used to encrypt communications.
pub fn can_encrypt_at_rest(&self) -> bool
[src]
This key may be used to encrypt storage.
pub fn set_encrypt_at_rest(self, v: bool) -> Self
[src]
Sets whether or not this key may be used to encrypt storage.
pub fn can_authenticate(&self) -> bool
[src]
This key may be used for authentication.
pub fn set_authenticate(self, v: bool) -> Self
[src]
Sets whether or not this key may be used for authentication.
pub fn is_split_key(&self) -> bool
[src]
The private component of this key may have been split using a secret-sharing mechanism.
pub fn set_split_key(self, v: bool) -> Self
[src]
Sets whether or not the private component of this key may have been split using a secret-sharing mechanism.
pub fn is_group_key(&self) -> bool
[src]
The private component of this key may be in possession of more than one person.
pub fn set_group_key(self, v: bool) -> Self
[src]
Sets whether or not the private component of this key may be in possession of more than one person.
Trait Implementations
impl Clone for KeyFlags
[src]
impl Debug for KeyFlags
[src]
impl Default for KeyFlags
[src]
impl Eq for KeyFlags
[src]
impl PartialEq<KeyFlags> for KeyFlags
[src]
impl PartialOrd<KeyFlags> for KeyFlags
[src]
Auto Trait Implementations
impl RefUnwindSafe for KeyFlags
impl Send for KeyFlags
impl Sync for KeyFlags
impl Unpin for KeyFlags
impl UnwindSafe for KeyFlags
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,