pub struct MemberSummary {
pub hostname: String,
pub sans: Vec<String>,
pub cert_expires: Option<DateTime<Utc>>,
pub last_seen: Option<DateTime<Utc>>,
pub status: String,
pub proxy_entries: Vec<ProxyConfigSummary>,
}Expand description
Summary of a certmesh member, projected through the trait boundary.
Fields§
§hostname: String§sans: Vec<String>§cert_expires: Option<DateTime<Utc>>§last_seen: Option<DateTime<Utc>>§status: String§proxy_entries: Vec<ProxyConfigSummary>Trait Implementations§
Source§impl Clone for MemberSummary
impl Clone for MemberSummary
Source§fn clone(&self) -> MemberSummary
fn clone(&self) -> MemberSummary
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 Debug for MemberSummary
impl Debug for MemberSummary
Source§impl<'de> Deserialize<'de> for MemberSummary
impl<'de> Deserialize<'de> for MemberSummary
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
Auto Trait Implementations§
impl Freeze for MemberSummary
impl RefUnwindSafe for MemberSummary
impl Send for MemberSummary
impl Sync for MemberSummary
impl Unpin for MemberSummary
impl UnsafeUnpin for MemberSummary
impl UnwindSafe for MemberSummary
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