pub struct ProviderProfileSummary {
pub id: String,
pub provider_type: String,
pub display_name: String,
pub health: ProviderProfileHealth,
pub last_error: Option<String>,
pub camera_count: u64,
pub created_at: String,
pub updated_at: String,
pub last_refreshed_at: Option<String>,
}Fields§
§id: String§provider_type: String§display_name: String§health: ProviderProfileHealth§last_error: Option<String>§camera_count: u64§created_at: String§updated_at: String§last_refreshed_at: Option<String>Trait Implementations§
Source§impl Clone for ProviderProfileSummary
impl Clone for ProviderProfileSummary
Source§fn clone(&self) -> ProviderProfileSummary
fn clone(&self) -> ProviderProfileSummary
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 ProviderProfileSummary
impl Debug for ProviderProfileSummary
Source§impl<'de> Deserialize<'de> for ProviderProfileSummary
impl<'de> Deserialize<'de> for ProviderProfileSummary
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 Eq for ProviderProfileSummary
Source§impl PartialEq for ProviderProfileSummary
impl PartialEq for ProviderProfileSummary
Source§impl Serialize for ProviderProfileSummary
impl Serialize for ProviderProfileSummary
impl StructuralPartialEq for ProviderProfileSummary
Auto Trait Implementations§
impl Freeze for ProviderProfileSummary
impl RefUnwindSafe for ProviderProfileSummary
impl Send for ProviderProfileSummary
impl Sync for ProviderProfileSummary
impl Unpin for ProviderProfileSummary
impl UnsafeUnpin for ProviderProfileSummary
impl UnwindSafe for ProviderProfileSummary
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