pub struct ProcessSpawnProvenance {
pub originator: ProcessOriginator,
pub wake_target: Option<SessionScope>,
}Expand description
Provenance a process-run context hands to its children: the chain’s originator and the chain’s wake target. Mirrors the trigger fire path, where the spawned process inherits the registrant and the grant is derived from the wake target.
Fields§
§originator: ProcessOriginator§wake_target: Option<SessionScope>Trait Implementations§
Source§impl Clone for ProcessSpawnProvenance
impl Clone for ProcessSpawnProvenance
Source§fn clone(&self) -> ProcessSpawnProvenance
fn clone(&self) -> ProcessSpawnProvenance
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 moreSource§impl Debug for ProcessSpawnProvenance
impl Debug for ProcessSpawnProvenance
impl Eq for ProcessSpawnProvenance
Source§impl PartialEq for ProcessSpawnProvenance
impl PartialEq for ProcessSpawnProvenance
Source§fn eq(&self, other: &ProcessSpawnProvenance) -> bool
fn eq(&self, other: &ProcessSpawnProvenance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProcessSpawnProvenance
Auto Trait Implementations§
impl Freeze for ProcessSpawnProvenance
impl RefUnwindSafe for ProcessSpawnProvenance
impl Send for ProcessSpawnProvenance
impl Sync for ProcessSpawnProvenance
impl Unpin for ProcessSpawnProvenance
impl UnsafeUnpin for ProcessSpawnProvenance
impl UnwindSafe for ProcessSpawnProvenance
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