pub enum Pid {
Local(NonZeroU64),
Remote(NonZeroU64, u64),
}Expand description
A unique identifier of a process in hydra.
Variants§
Local(NonZeroU64)
Remote(NonZeroU64, u64)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pid
impl<'de> Deserialize<'de> for Pid
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromIterator<Pid> for Dests
impl FromIterator<Pid> for Dests
Source§impl Ord for Pid
impl Ord for Pid
Source§impl PartialOrd for Pid
impl PartialOrd for Pid
impl Copy for Pid
impl Eq for Pid
impl StructuralPartialEq for Pid
Auto Trait Implementations§
impl Freeze for Pid
impl RefUnwindSafe for Pid
impl Send for Pid
impl Sync for Pid
impl Unpin for Pid
impl UnwindSafe for Pid
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