pub struct AccessUrls {
pub ca_certificate_access_url: Option<String>,
pub crl_access_urls: Option<Vec<String>>,
}Expand description
URLs where a CertificateAuthority will publish content.
This type is not used in any activity, and only used as part of another schema.
Fields§
§ca_certificate_access_url: Option<String>The URL where this CertificateAuthority’s CA certificate is published. This will only be set for CAs that have been activated.
crl_access_urls: Option<Vec<String>>The URLs where this CertificateAuthority’s CRLs are published. This will only be set for CAs that have been activated.
Trait Implementations§
Source§impl Clone for AccessUrls
impl Clone for AccessUrls
Source§fn clone(&self) -> AccessUrls
fn clone(&self) -> AccessUrls
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 AccessUrls
impl Debug for AccessUrls
Source§impl Default for AccessUrls
impl Default for AccessUrls
Source§fn default() -> AccessUrls
fn default() -> AccessUrls
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccessUrls
impl<'de> Deserialize<'de> for AccessUrls
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 AccessUrls
impl Serialize for AccessUrls
impl Part for AccessUrls
Auto Trait Implementations§
impl Freeze for AccessUrls
impl RefUnwindSafe for AccessUrls
impl Send for AccessUrls
impl Sync for AccessUrls
impl Unpin for AccessUrls
impl UnwindSafe for AccessUrls
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