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