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