pub struct AddonHealthCheckResponse {
pub protocol_version: String,
pub manifest_id: String,
pub status: AddonHealthStatus,
pub checked_at: String,
pub manifest: AddonHealthManifestFacts,
pub diagnostics: Value,
}Fields§
§protocol_version: String§manifest_id: String§status: AddonHealthStatus§checked_at: String§manifest: AddonHealthManifestFacts§diagnostics: ValueTrait Implementations§
Source§impl Clone for AddonHealthCheckResponse
impl Clone for AddonHealthCheckResponse
Source§fn clone(&self) -> AddonHealthCheckResponse
fn clone(&self) -> AddonHealthCheckResponse
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 AddonHealthCheckResponse
impl Debug for AddonHealthCheckResponse
Source§impl<'de> Deserialize<'de> for AddonHealthCheckResponse
impl<'de> Deserialize<'de> for AddonHealthCheckResponse
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 PartialEq for AddonHealthCheckResponse
impl PartialEq for AddonHealthCheckResponse
Source§fn eq(&self, other: &AddonHealthCheckResponse) -> bool
fn eq(&self, other: &AddonHealthCheckResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AddonHealthCheckResponse
impl Serialize for AddonHealthCheckResponse
impl Eq for AddonHealthCheckResponse
impl StructuralPartialEq for AddonHealthCheckResponse
Auto Trait Implementations§
impl Freeze for AddonHealthCheckResponse
impl RefUnwindSafe for AddonHealthCheckResponse
impl Send for AddonHealthCheckResponse
impl Sync for AddonHealthCheckResponse
impl Unpin for AddonHealthCheckResponse
impl UnsafeUnpin for AddonHealthCheckResponse
impl UnwindSafe for AddonHealthCheckResponse
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