pub enum EventOutcome {
Success,
Failure,
Unknown,
}Expand description
ECS event.outcome. Default unknown.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EventOutcome
impl Clone for EventOutcome
Source§fn clone(&self) -> EventOutcome
fn clone(&self) -> EventOutcome
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 EventOutcome
impl Debug for EventOutcome
Source§impl<'_derivative_strum> From<&'_derivative_strum EventOutcome> for &'static str
impl<'_derivative_strum> From<&'_derivative_strum EventOutcome> for &'static str
Source§fn from(x: &'_derivative_strum EventOutcome) -> &'static str
fn from(x: &'_derivative_strum EventOutcome) -> &'static str
Converts to this type from the input type.
Source§impl From<EventOutcome> for &'static str
impl From<EventOutcome> for &'static str
Source§fn from(x: EventOutcome) -> &'static str
fn from(x: EventOutcome) -> &'static str
Converts to this type from the input type.
Source§impl FromStr for EventOutcome
impl FromStr for EventOutcome
Source§impl PartialEq for EventOutcome
impl PartialEq for EventOutcome
Source§impl TryFrom<&str> for EventOutcome
impl TryFrom<&str> for EventOutcome
impl Copy for EventOutcome
impl Eq for EventOutcome
impl StructuralPartialEq for EventOutcome
Auto Trait Implementations§
impl Freeze for EventOutcome
impl RefUnwindSafe for EventOutcome
impl Send for EventOutcome
impl Sync for EventOutcome
impl Unpin for EventOutcome
impl UnsafeUnpin for EventOutcome
impl UnwindSafe for EventOutcome
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