pub struct Identifier {
pub additional_common_names: Option<Vec<String>>,
pub additional_organizational_units: Option<Vec<String>>,
pub alternative_names: Option<Vec<String>>,
pub city: Option<String>,
pub common_name: Option<String>,
pub country: Option<String>,
pub display_string: Option<String>,
pub domain_components: Option<Vec<String>>,
pub email: Option<String>,
pub organization: Option<String>,
pub organizational_unit: Option<String>,
pub state: Option<String>,
}
Expand description
The identifier information about a certificate.
Fields§
§additional_common_names: Option<Vec<String>>
Additional common names of the entity.
additional_organizational_units: Option<Vec<String>>
Additional organizational units of the entity.
alternative_names: Option<Vec<String>>
The additional host names of the entity.
city: Option<String>
The city or locality of the organization of the entity.
common_name: Option<String>
The common name of the entity.
country: Option<String>
The country of the organization of the entity.
display_string: Option<String>
A human-readable string for this identifier.
domain_components: Option<Vec<String>>
The domain components of the entity.
email: Option<String>
The email address of the contact within the organization of the entity.
organization: Option<String>
The name of the organization of the entity.
organizational_unit: Option<String>
The name of the unit or division of the organization of the entity.
state: Option<String>
The state, province, or region of the organization of the entity.
Trait Implementations§
Source§impl Clone for Identifier
impl Clone for Identifier
Source§fn clone(&self) -> Identifier
fn clone(&self) -> Identifier
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 Identifier
impl Debug for Identifier
Source§impl Default for Identifier
impl Default for Identifier
Source§impl<'de> Deserialize<'de> for Identifier
impl<'de> Deserialize<'de> for Identifier
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 Metadata<'static> for Identifier
impl Metadata<'static> for Identifier
Source§const JSON_SCHEMA: &'static str = "Certificate.v1_7_0.json"
const JSON_SCHEMA: &'static str = "Certificate.v1_7_0.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for Identifier
impl RefUnwindSafe for Identifier
impl Send for Identifier
impl Sync for Identifier
impl Unpin for Identifier
impl UnwindSafe for Identifier
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