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