pub struct EcKeyType {
pub signature_algorithm: Option<String>,
}Expand description
Describes an Elliptic Curve key that may be used in a Certificate issued from a CaPool.
This type is not used in any activity, and only used as part of another schema.
Fields§
§signature_algorithm: Option<String>Optional. A signature algorithm that must be used. If this is omitted, any EC-based signature algorithm will be allowed.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EcKeyType
impl<'de> Deserialize<'de> for EcKeyType
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
impl Part for EcKeyType
Auto Trait Implementations§
impl Freeze for EcKeyType
impl RefUnwindSafe for EcKeyType
impl Send for EcKeyType
impl Sync for EcKeyType
impl Unpin for EcKeyType
impl UnwindSafe for EcKeyType
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