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