pub struct ProcessKey(/* private fields */);Trait Implementations§
Source§impl Clone for ProcessKey
impl Clone for ProcessKey
Source§fn clone(&self) -> ProcessKey
fn clone(&self) -> ProcessKey
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 Debug for ProcessKey
impl Debug for ProcessKey
Source§impl Default for ProcessKey
impl Default for ProcessKey
Source§fn default() -> ProcessKey
fn default() -> ProcessKey
Returns the “default value” for a type. Read more
Source§impl From<KeyData> for ProcessKey
impl From<KeyData> for ProcessKey
Source§impl Hash for ProcessKey
impl Hash for ProcessKey
Source§impl Key for ProcessKey
impl Key for ProcessKey
Source§fn null() -> Self
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with
new_key_type!, which calls this
method). Read moreSource§impl Ord for ProcessKey
impl Ord for ProcessKey
Source§fn cmp(&self, other: &ProcessKey) -> Ordering
fn cmp(&self, other: &ProcessKey) -> 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 ProcessKey
impl PartialEq for ProcessKey
Source§impl PartialOrd for ProcessKey
impl PartialOrd for ProcessKey
impl Copy for ProcessKey
impl Eq for ProcessKey
impl StructuralPartialEq for ProcessKey
Auto Trait Implementations§
impl Freeze for ProcessKey
impl RefUnwindSafe for ProcessKey
impl Send for ProcessKey
impl Sync for ProcessKey
impl Unpin for ProcessKey
impl UnsafeUnpin for ProcessKey
impl UnwindSafe for ProcessKey
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