pub struct LocalLogin {
pub user_name: LogString,
pub domain: LogString,
}Expand description
A user is login in locally, in front of the computer (or almost).
Fields§
§user_name: LogStringUser that logged in
domain: LogStringUser domain
Implementations§
Trait Implementations§
Source§impl Clone for LocalLogin
impl Clone for LocalLogin
Source§fn clone(&self) -> LocalLogin
fn clone(&self) -> LocalLogin
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 LocalLogin
impl Debug for LocalLogin
Source§impl<'de> Deserialize<'de> for LocalLogin
impl<'de> Deserialize<'de> for LocalLogin
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 LocalLogin
impl PartialEq for LocalLogin
Source§impl Serialize for LocalLogin
impl Serialize for LocalLogin
impl StructuralPartialEq for LocalLogin
Auto Trait Implementations§
impl Freeze for LocalLogin
impl RefUnwindSafe for LocalLogin
impl Send for LocalLogin
impl Sync for LocalLogin
impl Unpin for LocalLogin
impl UnwindSafe for LocalLogin
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