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