#[repr(C)]pub struct sd_id128 {
pub value: [u8; 16],
}Expand description
FFI data type mapping for sd-id128 as defined in libsystemd.
This data type should rarely be used directly. Crate sd-id128 defines a
wrapper ID128.
While libsystemd defines the data type as a union of [u8;16] and [u64;2] currently sd-sys only supports the first.
https://www.freedesktop.org/software/systemd/man/sd-id128.html
Fields§
§value: [u8; 16]Trait Implementations§
impl Eq for sd_id128
impl StructuralPartialEq for sd_id128
Auto Trait Implementations§
impl Freeze for sd_id128
impl RefUnwindSafe for sd_id128
impl Send for sd_id128
impl Sync for sd_id128
impl Unpin for sd_id128
impl UnwindSafe for sd_id128
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