pub struct ConsoleStoreDiagnostic {
pub id: String,
pub label: String,
pub status: String,
pub backend: String,
pub source: Option<String>,
pub path: Option<String>,
pub detail: Option<String>,
}Fields§
§id: String§label: String§status: String§backend: String§source: Option<String>§path: Option<String>§detail: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ConsoleStoreDiagnostic
impl Clone for ConsoleStoreDiagnostic
Source§fn clone(&self) -> ConsoleStoreDiagnostic
fn clone(&self) -> ConsoleStoreDiagnostic
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 ConsoleStoreDiagnostic
impl Debug for ConsoleStoreDiagnostic
Source§impl Default for ConsoleStoreDiagnostic
impl Default for ConsoleStoreDiagnostic
Source§fn default() -> ConsoleStoreDiagnostic
fn default() -> ConsoleStoreDiagnostic
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConsoleStoreDiagnostic
impl<'de> Deserialize<'de> for ConsoleStoreDiagnostic
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 ConsoleStoreDiagnostic
impl PartialEq for ConsoleStoreDiagnostic
Source§fn eq(&self, other: &ConsoleStoreDiagnostic) -> bool
fn eq(&self, other: &ConsoleStoreDiagnostic) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConsoleStoreDiagnostic
impl Serialize for ConsoleStoreDiagnostic
impl StructuralPartialEq for ConsoleStoreDiagnostic
Auto Trait Implementations§
impl Freeze for ConsoleStoreDiagnostic
impl RefUnwindSafe for ConsoleStoreDiagnostic
impl Send for ConsoleStoreDiagnostic
impl Sync for ConsoleStoreDiagnostic
impl Unpin for ConsoleStoreDiagnostic
impl UnsafeUnpin for ConsoleStoreDiagnostic
impl UnwindSafe for ConsoleStoreDiagnostic
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