pub struct OutcomeLabel(/* private fields */);Expand description
Validated stable outcome label for event results.
Implementations§
Source§impl OutcomeLabel
impl OutcomeLabel
Sourcepub fn new(
value: impl Into<String>,
) -> Result<OutcomeLabel, ValueValidationError>
pub fn new( value: impl Into<String>, ) -> Result<OutcomeLabel, ValueValidationError>
Creates a validated value from caller-provided string data.
§Errors
Returns ValueValidationError when the supplied string does
not satisfy the documented validation rules for this type.
Trait Implementations§
Source§impl AsRef<str> for OutcomeLabel
impl AsRef<str> for OutcomeLabel
Source§impl Clone for OutcomeLabel
impl Clone for OutcomeLabel
Source§fn clone(&self) -> OutcomeLabel
fn clone(&self) -> OutcomeLabel
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 OutcomeLabel
impl Debug for OutcomeLabel
Source§impl<'de> Deserialize<'de> for OutcomeLabel
impl<'de> Deserialize<'de> for OutcomeLabel
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutcomeLabel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutcomeLabel, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OutcomeLabel
impl Display for OutcomeLabel
Source§impl Hash for OutcomeLabel
impl Hash for OutcomeLabel
Source§impl PartialEq for OutcomeLabel
impl PartialEq for OutcomeLabel
Source§impl Serialize for OutcomeLabel
impl Serialize for OutcomeLabel
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<String> for OutcomeLabel
impl TryFrom<String> for OutcomeLabel
Source§type Error = ValueValidationError
type Error = ValueValidationError
The type returned in the event of a conversion error.
Source§fn try_from(
value: String,
) -> Result<OutcomeLabel, <OutcomeLabel as TryFrom<String>>::Error>
fn try_from( value: String, ) -> Result<OutcomeLabel, <OutcomeLabel as TryFrom<String>>::Error>
Performs the conversion.
impl Eq for OutcomeLabel
impl StructuralPartialEq for OutcomeLabel
Auto Trait Implementations§
impl Freeze for OutcomeLabel
impl RefUnwindSafe for OutcomeLabel
impl Send for OutcomeLabel
impl Sync for OutcomeLabel
impl Unpin for OutcomeLabel
impl UnsafeUnpin for OutcomeLabel
impl UnwindSafe for OutcomeLabel
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