[][src]Struct coreutils_core::os::utmp::Utmp

pub struct Utmp { /* fields omitted */ }

A struct that represents a user account, where user can be humam users or other parts of the system that requires the usage of account structure, like some daemons.

Methods

impl Utmp[src]

pub fn from_c_utmp(utm: utmp) -> Self[src]

Creates a Utmp from the c structure utmp.

pub fn user(&self) -> &BStr[src]

Get user name.

pub fn id(&self) -> &BStr[src]

Get /etc/inittab id.

pub fn device_name(&self) -> &BStr[src]

Get the device name of the entry. (usually a tty or console)

pub const fn time(&self) -> Time[src]

Get the time the entry was created.

pub fn login_time(&self) -> DataTime[src]

Get the time where the entry was created (often login time) in a more complete structure.

pub fn pid(&self) -> c_short[src]

Get the process ID of the entry.

pub fn entry_type(&self) -> UtmpxKind[src]

Get the entry type.

pub fn exit_status(&self) -> ExitStatus[src]

Get the exit status of the entry.

Trait Implementations

impl Clone for Utmp[src]

impl Debug for Utmp[src]

impl Eq for Utmp[src]

impl From<Utmp> for utmp[src]

impl From<utmp> for Utmp[src]

impl Hash for Utmp[src]

impl PartialEq<Utmp> for Utmp[src]

impl StructuralEq for Utmp[src]

impl StructuralPartialEq for Utmp[src]

Auto Trait Implementations

impl RefUnwindSafe for Utmp

impl Send for Utmp

impl Sync for Utmp

impl Unpin for Utmp

impl UnwindSafe for Utmp

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.