pub struct RecentLoginResponse {
pub logins: Option<Vec<DisplayableRawLogin>>,
}Expand description
RecentLoginResponse : Response for the user login report.
Fields§
§logins: Option<Vec<DisplayableRawLogin>>Implementations§
Source§impl RecentLoginResponse
impl RecentLoginResponse
Sourcepub fn new() -> RecentLoginResponse
pub fn new() -> RecentLoginResponse
Response for the user login report.
Trait Implementations§
Source§impl Clone for RecentLoginResponse
impl Clone for RecentLoginResponse
Source§fn clone(&self) -> RecentLoginResponse
fn clone(&self) -> RecentLoginResponse
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 RecentLoginResponse
impl Debug for RecentLoginResponse
Source§impl Default for RecentLoginResponse
impl Default for RecentLoginResponse
Source§fn default() -> RecentLoginResponse
fn default() -> RecentLoginResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecentLoginResponse
impl<'de> Deserialize<'de> for RecentLoginResponse
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 RecentLoginResponse
impl PartialEq for RecentLoginResponse
Source§impl Serialize for RecentLoginResponse
impl Serialize for RecentLoginResponse
impl StructuralPartialEq for RecentLoginResponse
Auto Trait Implementations§
impl Freeze for RecentLoginResponse
impl RefUnwindSafe for RecentLoginResponse
impl Send for RecentLoginResponse
impl Sync for RecentLoginResponse
impl Unpin for RecentLoginResponse
impl UnwindSafe for RecentLoginResponse
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