pub struct X509Extension {
pub critical: Option<bool>,
pub object_id: Option<ObjectId>,
pub value: Option<Vec<u8>>,
}Expand description
An X509Extension specifies an X.509 extension, which may be used in different parts of X.509 objects like certificates, CSRs, and CRLs.
This type is not used in any activity, and only used as part of another schema.
Fields§
§critical: Option<bool>Optional. Indicates whether or not this extension is critical (i.e., if the client does not know how to handle this extension, the client should consider this to be an error).
object_id: Option<ObjectId>Required. The OID for this X.509 extension.
value: Option<Vec<u8>>Required. The value of this X.509 extension.
Trait Implementations§
Source§impl Clone for X509Extension
impl Clone for X509Extension
Source§fn clone(&self) -> X509Extension
fn clone(&self) -> X509Extension
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 X509Extension
impl Debug for X509Extension
Source§impl Default for X509Extension
impl Default for X509Extension
Source§fn default() -> X509Extension
fn default() -> X509Extension
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for X509Extension
impl<'de> Deserialize<'de> for X509Extension
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for X509Extension
impl Serialize for X509Extension
impl Part for X509Extension
Auto Trait Implementations§
impl Freeze for X509Extension
impl RefUnwindSafe for X509Extension
impl Send for X509Extension
impl Sync for X509Extension
impl Unpin for X509Extension
impl UnwindSafe for X509Extension
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