pub struct EntityMapping {
pub display_name: String,
pub mount_path: String,
pub mount_accessor: String,
pub username: Option<String>,
pub login_count: usize,
pub first_seen: String,
pub last_seen: String,
}Expand description
Entity mapping with login statistics
Fields§
§display_name: String§mount_path: String§mount_accessor: String§username: Option<String>§login_count: usize§first_seen: String§last_seen: StringTrait Implementations§
Source§impl Debug for EntityMapping
impl Debug for EntityMapping
Source§impl<'de> Deserialize<'de> for EntityMapping
impl<'de> Deserialize<'de> for EntityMapping
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
Auto Trait Implementations§
impl Freeze for EntityMapping
impl RefUnwindSafe for EntityMapping
impl Send for EntityMapping
impl Sync for EntityMapping
impl Unpin for EntityMapping
impl UnwindSafe for EntityMapping
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