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