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