pub struct TrustedBundleEntry {
pub cluster_domain: String,
pub ca_kid: String,
pub ca_public_key_b64: String,
pub generated_at: String,
pub source_url: Option<String>,
}Expand description
One entry in the trusted-bundle listing.
Fields§
§cluster_domain: StringCluster domain.
ca_kid: StringCA kid.
ca_public_key_b64: StringCA pubkey (URL-safe no-pad base64).
generated_at: StringRFC3339 timestamp when this bundle was originally generated by the source cluster.
source_url: Option<String>Optional source URL captured at import time.
Trait Implementations§
Source§impl Clone for TrustedBundleEntry
impl Clone for TrustedBundleEntry
Source§fn clone(&self) -> TrustedBundleEntry
fn clone(&self) -> TrustedBundleEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for TrustedBundleEntry
impl ComposeSchema for TrustedBundleEntry
Source§impl Debug for TrustedBundleEntry
impl Debug for TrustedBundleEntry
Source§impl<'de> Deserialize<'de> for TrustedBundleEntry
impl<'de> Deserialize<'de> for TrustedBundleEntry
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 TrustedBundleEntry
impl Serialize for TrustedBundleEntry
Auto Trait Implementations§
impl Freeze for TrustedBundleEntry
impl RefUnwindSafe for TrustedBundleEntry
impl Send for TrustedBundleEntry
impl Sync for TrustedBundleEntry
impl Unpin for TrustedBundleEntry
impl UnsafeUnpin for TrustedBundleEntry
impl UnwindSafe for TrustedBundleEntry
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