pub struct ConsoleDiagnostics {
pub generated_at: String,
pub runtime: HashMap<String, Value>,
pub access: HashMap<String, Value>,
pub stores: Vec<ConsoleStoreDiagnostic>,
pub routes: Vec<ConsoleRouteDiagnostic>,
}Fields§
§generated_at: String§runtime: HashMap<String, Value>§access: HashMap<String, Value>§stores: Vec<ConsoleStoreDiagnostic>§routes: Vec<ConsoleRouteDiagnostic>Implementations§
Source§impl ConsoleDiagnostics
impl ConsoleDiagnostics
pub fn new( generated_at: String, runtime: HashMap<String, Value>, access: HashMap<String, Value>, stores: Vec<ConsoleStoreDiagnostic>, routes: Vec<ConsoleRouteDiagnostic>, ) -> ConsoleDiagnostics
Trait Implementations§
Source§impl Clone for ConsoleDiagnostics
impl Clone for ConsoleDiagnostics
Source§fn clone(&self) -> ConsoleDiagnostics
fn clone(&self) -> ConsoleDiagnostics
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 ConsoleDiagnostics
impl Debug for ConsoleDiagnostics
Source§impl Default for ConsoleDiagnostics
impl Default for ConsoleDiagnostics
Source§fn default() -> ConsoleDiagnostics
fn default() -> ConsoleDiagnostics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConsoleDiagnostics
impl<'de> Deserialize<'de> for ConsoleDiagnostics
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 ConsoleDiagnostics
impl PartialEq for ConsoleDiagnostics
Source§fn eq(&self, other: &ConsoleDiagnostics) -> bool
fn eq(&self, other: &ConsoleDiagnostics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConsoleDiagnostics
impl Serialize for ConsoleDiagnostics
impl StructuralPartialEq for ConsoleDiagnostics
Auto Trait Implementations§
impl Freeze for ConsoleDiagnostics
impl RefUnwindSafe for ConsoleDiagnostics
impl Send for ConsoleDiagnostics
impl Sync for ConsoleDiagnostics
impl Unpin for ConsoleDiagnostics
impl UnsafeUnpin for ConsoleDiagnostics
impl UnwindSafe for ConsoleDiagnostics
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