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