pub struct RuntimeList {
pub total: i32,
pub runtimes: Vec<Runtime>,
}Expand description
RuntimeList : Runtimes List
Fields§
§total: i32Total number of runtimes documents that matched your query.
runtimes: Vec<Runtime>List of runtimes.
Implementations§
Source§impl RuntimeList
impl RuntimeList
Trait Implementations§
Source§impl Clone for RuntimeList
impl Clone for RuntimeList
Source§fn clone(&self) -> RuntimeList
fn clone(&self) -> RuntimeList
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 RuntimeList
impl Debug for RuntimeList
Source§impl<'de> Deserialize<'de> for RuntimeList
impl<'de> Deserialize<'de> for RuntimeList
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 RuntimeList
impl PartialEq for RuntimeList
Source§fn eq(&self, other: &RuntimeList) -> bool
fn eq(&self, other: &RuntimeList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeList
impl Serialize for RuntimeList
impl StructuralPartialEq for RuntimeList
Auto Trait Implementations§
impl Freeze for RuntimeList
impl RefUnwindSafe for RuntimeList
impl Send for RuntimeList
impl Sync for RuntimeList
impl Unpin for RuntimeList
impl UnsafeUnpin for RuntimeList
impl UnwindSafe for RuntimeList
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