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