pub struct CellRecord {
pub pid: u32,
pub token: String,
}Expand description
Immutable record established on the first Resolve for a cell.
Fields§
§pid: u32PID that registered this cell (SO_PEERCRED on first Resolve).
token: String32-byte hex random token set at supervisor spawn time.
Trait Implementations§
Source§impl Clone for CellRecord
impl Clone for CellRecord
Source§fn clone(&self) -> CellRecord
fn clone(&self) -> CellRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CellRecord
impl RefUnwindSafe for CellRecord
impl Send for CellRecord
impl Sync for CellRecord
impl Unpin for CellRecord
impl UnsafeUnpin for CellRecord
impl UnwindSafe for CellRecord
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