pub struct AdminDiagnosticsResponseChecksStorage {
pub detail: Option<String>,
pub ok: bool,
}Expand description
AdminDiagnosticsResponseChecksStorage
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"detail": {
"type": "string"
},
"ok": {
"type": "boolean"
}
}
}Fields§
§detail: Option<String>§ok: boolImplementations§
Trait Implementations§
Source§impl Clone for AdminDiagnosticsResponseChecksStorage
impl Clone for AdminDiagnosticsResponseChecksStorage
Source§fn clone(&self) -> AdminDiagnosticsResponseChecksStorage
fn clone(&self) -> AdminDiagnosticsResponseChecksStorage
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<'de> Deserialize<'de> for AdminDiagnosticsResponseChecksStorage
impl<'de> Deserialize<'de> for AdminDiagnosticsResponseChecksStorage
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 From<&AdminDiagnosticsResponseChecksStorage> for AdminDiagnosticsResponseChecksStorage
impl From<&AdminDiagnosticsResponseChecksStorage> for AdminDiagnosticsResponseChecksStorage
Source§fn from(value: &AdminDiagnosticsResponseChecksStorage) -> Self
fn from(value: &AdminDiagnosticsResponseChecksStorage) -> Self
Converts to this type from the input type.
Source§impl From<AdminDiagnosticsResponseChecksStorage> for AdminDiagnosticsResponseChecksStorage
impl From<AdminDiagnosticsResponseChecksStorage> for AdminDiagnosticsResponseChecksStorage
Source§fn from(value: AdminDiagnosticsResponseChecksStorage) -> Self
fn from(value: AdminDiagnosticsResponseChecksStorage) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AdminDiagnosticsResponseChecksStorage> for AdminDiagnosticsResponseChecksStorage
impl TryFrom<AdminDiagnosticsResponseChecksStorage> for AdminDiagnosticsResponseChecksStorage
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AdminDiagnosticsResponseChecksStorage,
) -> Result<Self, ConversionError>
fn try_from( value: AdminDiagnosticsResponseChecksStorage, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AdminDiagnosticsResponseChecksStorage
impl RefUnwindSafe for AdminDiagnosticsResponseChecksStorage
impl Send for AdminDiagnosticsResponseChecksStorage
impl Sync for AdminDiagnosticsResponseChecksStorage
impl Unpin for AdminDiagnosticsResponseChecksStorage
impl UnsafeUnpin for AdminDiagnosticsResponseChecksStorage
impl UnwindSafe for AdminDiagnosticsResponseChecksStorage
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