pub struct RsaKeyType {
pub max_modulus_size: Option<i64>,
pub min_modulus_size: Option<i64>,
}Expand description
Describes an RSA 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§
§max_modulus_size: Option<i64>Optional. The maximum allowed RSA modulus size (inclusive), in bits. If this is not set, or if set to zero, the service will not enforce an explicit upper bound on RSA modulus sizes.
min_modulus_size: Option<i64>Optional. The minimum allowed RSA modulus size (inclusive), in bits. If this is not set, or if set to zero, the service-level min RSA modulus size will continue to apply.
Trait Implementations§
Source§impl Clone for RsaKeyType
impl Clone for RsaKeyType
Source§fn clone(&self) -> RsaKeyType
fn clone(&self) -> RsaKeyType
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 RsaKeyType
impl Debug for RsaKeyType
Source§impl Default for RsaKeyType
impl Default for RsaKeyType
Source§fn default() -> RsaKeyType
fn default() -> RsaKeyType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RsaKeyType
impl<'de> Deserialize<'de> for RsaKeyType
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 RsaKeyType
impl Serialize for RsaKeyType
impl Part for RsaKeyType
Auto Trait Implementations§
impl Freeze for RsaKeyType
impl RefUnwindSafe for RsaKeyType
impl Send for RsaKeyType
impl Sync for RsaKeyType
impl Unpin for RsaKeyType
impl UnwindSafe for RsaKeyType
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