[−][src]Struct openssl::x509::extension::KeyUsage   
An extension consisting of a list of names of the permitted key usages.
Methods
impl KeyUsage[src]
pub fn new() -> KeyUsage[src]
Construct a new KeyUsage extension.
pub fn critical(&mut self) -> &mut KeyUsage[src]
Sets the critical flag to true. The extension will be critical.
pub fn digital_signature(&mut self) -> &mut KeyUsage[src]
Sets the digitalSignature flag to true.
pub fn non_repudiation(&mut self) -> &mut KeyUsage[src]
Sets the nonRepudiation flag to true.
pub fn key_encipherment(&mut self) -> &mut KeyUsage[src]
Sets the keyEncipherment flag to true.
pub fn data_encipherment(&mut self) -> &mut KeyUsage[src]
Sets the dataEncipherment flag to true.
pub fn key_agreement(&mut self) -> &mut KeyUsage[src]
Sets the keyAgreement flag to true.
pub fn key_cert_sign(&mut self) -> &mut KeyUsage[src]
Sets the keyCertSign flag to true.
pub fn crl_sign(&mut self) -> &mut KeyUsage[src]
Sets the cRLSign flag to true.
pub fn encipher_only(&mut self) -> &mut KeyUsage[src]
Sets the encipherOnly flag to true.
pub fn decipher_only(&mut self) -> &mut KeyUsage[src]
Sets the decipherOnly flag to true.
pub fn build(&self) -> Result<X509Extension, ErrorStack>[src]
Return the KeyUsage extension as an X509Extension.
Auto Trait Implementations
impl Unpin for KeyUsage
impl Sync for KeyUsage
impl Send for KeyUsage
impl UnwindSafe for KeyUsage
impl RefUnwindSafe for KeyUsage
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
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> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,