#[repr(C)]pub struct utsname {
pub sysname: [u8; 65],
pub nodename: [u8; 65],
pub release: [u8; 65],
pub version: [u8; 65],
pub machine: [u8; 65],
pub domainname: [u8; 65],
}Available on (Linux or Android) and (x86-64 and little-endian and 64-bit, or AArch64 and 64-bit, or ARM and 32-bit, or x86 and little-endian and 32-bit), or Linux and (x86-64 and little-endian and 32-bit, or RISC-V RV64 and little-endian and 64-bit, or RISC-V RV32 and little-endian and 32-bit, or MIPS and 32-bit, or MIPS-64 and 64-bit, or s390x and big-endian and 64-bit, or LoongArch LA64 and little-endian and 64-bit, or PowerPC and big-endian and 32-bit, or PowerPC-64 and 64-bit) only.
Expand description
Structure describing the system and machine.
Fields§
§sysname: [u8; 65]Name of the implementation of the operating system.
nodename: [u8; 65]Name of this node on the network.
release: [u8; 65]Current release level of this implementation.
version: [u8; 65]Current version level of this release.
machine: [u8; 65]Name of the hardware type the system is running on.
domainname: [u8; 65]Trait Implementations§
Auto Trait Implementations§
impl Freeze for utsname
impl RefUnwindSafe for utsname
impl Send for utsname
impl Sync for utsname
impl Unpin for utsname
impl UnwindSafe for utsname
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