[][src]Struct isilon::models::SmbSession

pub struct SmbSession {
    pub active_time: i32,
    pub client_type: String,
    pub computer: String,
    pub encryption: bool,
    pub guest_login: bool,
    pub id: i32,
    pub idle_time: i32,
    pub openfiles: i32,
    pub user: String,
}

Fields

active_time: i32

Number of seconds since session start.

client_type: String

Client type.

computer: String

Client internet address.

encryption: bool

True if session is encrypted.

guest_login: bool

True for guest logins.

id: i32

The session ID.

idle_time: i32

Number of seconds since last client operation.

openfiles: i32

Number of files open by client.

user: String

Local user name.

Trait Implementations

impl Debug for SmbSession[src]

impl Serialize for SmbSession[src]

impl<'de> Deserialize<'de> for SmbSession[src]

Auto Trait Implementations

impl Send for SmbSession

impl Sync for SmbSession

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T