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