#[repr(C)]pub struct utmp {
pub ut_line: [c_char; 8],
pub ut_name: [c_char; 32],
pub ut_host: [c_char; 256],
pub ut_time: time_t,
}
Fields
ut_line: [c_char; 8]
ut_name: [c_char; 32]
ut_host: [c_char; 256]
ut_time: time_t
Trait Implementations
sourceimpl Hash for utmp
impl Hash for utmp
1.3.0fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Copy for utmp
impl Eq for utmp
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> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more