pub enum StepTarget {
User,
Environment,
Unspecified,
Unknown,
}Expand description
The target destination of a step event.
Variants§
User
Event addressed to the user.
Environment
Event executing in the sandbox environment.
Unspecified
Unspecified destination.
Unknown
Unknown destination.
Trait Implementations§
Source§impl Clone for StepTarget
impl Clone for StepTarget
Source§fn clone(&self) -> StepTarget
fn clone(&self) -> StepTarget
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 StepTarget
impl Debug for StepTarget
Source§impl<'de> Deserialize<'de> for StepTarget
impl<'de> Deserialize<'de> for StepTarget
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 PartialEq for StepTarget
impl PartialEq for StepTarget
Source§fn eq(&self, other: &StepTarget) -> bool
fn eq(&self, other: &StepTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StepTarget
impl Serialize for StepTarget
impl Copy for StepTarget
impl Eq for StepTarget
impl StructuralPartialEq for StepTarget
Auto Trait Implementations§
impl Freeze for StepTarget
impl RefUnwindSafe for StepTarget
impl Send for StepTarget
impl Sync for StepTarget
impl Unpin for StepTarget
impl UnsafeUnpin for StepTarget
impl UnwindSafe for StepTarget
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