pub struct PaginatedDuoDeviceList {
pub pagination: Box<Pagination>,
pub results: Vec<DuoDevice>,
}
Fields§
§pagination: Box<Pagination>
§results: Vec<DuoDevice>
Implementations§
Source§impl PaginatedDuoDeviceList
impl PaginatedDuoDeviceList
pub fn new( pagination: Pagination, results: Vec<DuoDevice>, ) -> PaginatedDuoDeviceList
Trait Implementations§
Source§impl Clone for PaginatedDuoDeviceList
impl Clone for PaginatedDuoDeviceList
Source§fn clone(&self) -> PaginatedDuoDeviceList
fn clone(&self) -> PaginatedDuoDeviceList
Returns a duplicate of the value. Read more
1.0.0 · 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 PaginatedDuoDeviceList
impl Debug for PaginatedDuoDeviceList
Source§impl Default for PaginatedDuoDeviceList
impl Default for PaginatedDuoDeviceList
Source§fn default() -> PaginatedDuoDeviceList
fn default() -> PaginatedDuoDeviceList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedDuoDeviceList
impl<'de> Deserialize<'de> for PaginatedDuoDeviceList
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 PaginatedDuoDeviceList
impl PartialEq for PaginatedDuoDeviceList
Source§impl Serialize for PaginatedDuoDeviceList
impl Serialize for PaginatedDuoDeviceList
impl StructuralPartialEq for PaginatedDuoDeviceList
Auto Trait Implementations§
impl Freeze for PaginatedDuoDeviceList
impl RefUnwindSafe for PaginatedDuoDeviceList
impl Send for PaginatedDuoDeviceList
impl Sync for PaginatedDuoDeviceList
impl Unpin for PaginatedDuoDeviceList
impl UnwindSafe for PaginatedDuoDeviceList
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