pub struct EnumEventDescriptor {
pub outcomes: Vec<String>,
}
Expand description
Describes the outcomes of an event as an enumeration.
Fields§
§outcomes: Vec<String>
The possible outcomes of the event.
Trait Implementations§
Source§impl Clone for EnumEventDescriptor
impl Clone for EnumEventDescriptor
Source§fn clone(&self) -> EnumEventDescriptor
fn clone(&self) -> EnumEventDescriptor
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 EnumEventDescriptor
impl Debug for EnumEventDescriptor
Source§impl PartialEq for EnumEventDescriptor
impl PartialEq for EnumEventDescriptor
Source§impl Readable for EnumEventDescriptor
impl Readable for EnumEventDescriptor
Source§impl Writeable for EnumEventDescriptor
impl Writeable for EnumEventDescriptor
impl Eq for EnumEventDescriptor
impl StructuralPartialEq for EnumEventDescriptor
Auto Trait Implementations§
impl Freeze for EnumEventDescriptor
impl RefUnwindSafe for EnumEventDescriptor
impl Send for EnumEventDescriptor
impl Sync for EnumEventDescriptor
impl Unpin for EnumEventDescriptor
impl UnwindSafe for EnumEventDescriptor
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