pub struct RuntimeList {
pub total: i64,
pub runtimes: Vec<Runtime>,
}Expand description
Runtimes List
Fields§
§total: i64Total number of runtimes that matched your query.
runtimes: Vec<Runtime>List of runtimes.
Implementations§
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 Serialize for RuntimeList
impl Serialize for RuntimeList
impl Model 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