#[repr(C)]pub struct sd_id128_t {
pub bytes: [u8; 16],
}Expand description
Note: this is marked Copy because the libsystemd apis pass it by value without implying an
ownership transfer.
Fields§
§bytes: [u8; 16]Trait Implementations§
Source§impl Clone for sd_id128_t
impl Clone for sd_id128_t
Source§fn clone(&self) -> sd_id128_t
fn clone(&self) -> sd_id128_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Ord for sd_id128_t
impl Ord for sd_id128_t
Source§fn cmp(&self, other: &sd_id128_t) -> Ordering
fn cmp(&self, other: &sd_id128_t) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for sd_id128_t
impl PartialEq for sd_id128_t
Source§impl PartialOrd for sd_id128_t
impl PartialOrd for sd_id128_t
impl Copy for sd_id128_t
impl Eq for sd_id128_t
impl StructuralPartialEq for sd_id128_t
Auto Trait Implementations§
impl Freeze for sd_id128_t
impl RefUnwindSafe for sd_id128_t
impl Send for sd_id128_t
impl Sync for sd_id128_t
impl Unpin for sd_id128_t
impl UnwindSafe for sd_id128_t
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