pub struct PaginatedInterfaceVdcAssignmentList {
pub count: i32,
pub next: Option<Option<String>>,
pub previous: Option<Option<String>>,
pub results: Vec<InterfaceVdcAssignment>,
}Fields§
§count: i32§next: Option<Option<String>>§previous: Option<Option<String>>§results: Vec<InterfaceVdcAssignment>Implementations§
Source§impl PaginatedInterfaceVdcAssignmentList
impl PaginatedInterfaceVdcAssignmentList
pub fn new( count: i32, results: Vec<InterfaceVdcAssignment>, ) -> PaginatedInterfaceVdcAssignmentList
Trait Implementations§
Source§impl Clone for PaginatedInterfaceVdcAssignmentList
impl Clone for PaginatedInterfaceVdcAssignmentList
Source§fn clone(&self) -> PaginatedInterfaceVdcAssignmentList
fn clone(&self) -> PaginatedInterfaceVdcAssignmentList
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 Default for PaginatedInterfaceVdcAssignmentList
impl Default for PaginatedInterfaceVdcAssignmentList
Source§fn default() -> PaginatedInterfaceVdcAssignmentList
fn default() -> PaginatedInterfaceVdcAssignmentList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedInterfaceVdcAssignmentList
impl<'de> Deserialize<'de> for PaginatedInterfaceVdcAssignmentList
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 PaginatedInterfaceVdcAssignmentList
impl PartialEq for PaginatedInterfaceVdcAssignmentList
Source§fn eq(&self, other: &PaginatedInterfaceVdcAssignmentList) -> bool
fn eq(&self, other: &PaginatedInterfaceVdcAssignmentList) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PaginatedInterfaceVdcAssignmentList
Auto Trait Implementations§
impl Freeze for PaginatedInterfaceVdcAssignmentList
impl RefUnwindSafe for PaginatedInterfaceVdcAssignmentList
impl Send for PaginatedInterfaceVdcAssignmentList
impl Sync for PaginatedInterfaceVdcAssignmentList
impl Unpin for PaginatedInterfaceVdcAssignmentList
impl UnsafeUnpin for PaginatedInterfaceVdcAssignmentList
impl UnwindSafe for PaginatedInterfaceVdcAssignmentList
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