Trait cluuname::UtsName [] [src]

pub trait UtsName: Hash + HashVersion + Display + Debug + Hash + PartialEq + Eq + PartialOrd + Ord + Clone {
    fn as_sysname(&self) -> &CStr;
fn as_nodename(&self) -> &CStr;
fn as_release(&self) -> &CStr;
fn as_version(&self) -> &CStr;
fn as_machine(&self) -> &CStr; fn uname_hash(&self) -> u64 { ... }
fn version_hash(&self) -> u64 { ... } }

Basic uname trait

Required Methods

Get sysname for this structure.

Get nodename for this structure.

Get release for this structure.

Get version for this structure.

Get machine for this structure.

Provided Methods

Implementors