pub struct PaginatedRackList {
pub count: i32,
pub next: Option<Option<String>>,
pub previous: Option<Option<String>>,
pub results: Vec<Rack>,
}Fields§
§count: i32§next: Option<Option<String>>§previous: Option<Option<String>>§results: Vec<Rack>Implementations§
Trait Implementations§
Source§impl Clone for PaginatedRackList
impl Clone for PaginatedRackList
Source§fn clone(&self) -> PaginatedRackList
fn clone(&self) -> PaginatedRackList
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 PaginatedRackList
impl Debug for PaginatedRackList
Source§impl Default for PaginatedRackList
impl Default for PaginatedRackList
Source§fn default() -> PaginatedRackList
fn default() -> PaginatedRackList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedRackList
impl<'de> Deserialize<'de> for PaginatedRackList
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 PaginatedRackList
impl PartialEq for PaginatedRackList
Source§impl Serialize for PaginatedRackList
impl Serialize for PaginatedRackList
impl StructuralPartialEq for PaginatedRackList
Auto Trait Implementations§
impl Freeze for PaginatedRackList
impl RefUnwindSafe for PaginatedRackList
impl Send for PaginatedRackList
impl Sync for PaginatedRackList
impl Unpin for PaginatedRackList
impl UnwindSafe for PaginatedRackList
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