Struct ExpressionMarking
pub struct ExpressionMarking(/* private fields */);Implementations§
§impl ExpressionMarking
impl ExpressionMarking
pub fn new(value: impl AsRef<str>) -> Result<ExpressionMarking, DynamicsError>
pub fn as_str(&self) -> &str
pub fn value(&self) -> &str
pub fn into_string(self) -> String
Trait Implementations§
§impl AsRef<str> for ExpressionMarking
impl AsRef<str> for ExpressionMarking
§impl Clone for ExpressionMarking
impl Clone for ExpressionMarking
§fn clone(&self) -> ExpressionMarking
fn clone(&self) -> ExpressionMarking
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 more§impl Debug for ExpressionMarking
impl Debug for ExpressionMarking
§impl Display for ExpressionMarking
impl Display for ExpressionMarking
§impl FromStr for ExpressionMarking
impl FromStr for ExpressionMarking
§type Err = DynamicsError
type Err = DynamicsError
The associated error which can be returned from parsing.
§fn from_str(
value: &str,
) -> Result<ExpressionMarking, <ExpressionMarking as FromStr>::Err>
fn from_str( value: &str, ) -> Result<ExpressionMarking, <ExpressionMarking as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for ExpressionMarking
impl Hash for ExpressionMarking
§impl Ord for ExpressionMarking
impl Ord for ExpressionMarking
§fn cmp(&self, other: &ExpressionMarking) -> Ordering
fn cmp(&self, other: &ExpressionMarking) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq for ExpressionMarking
impl PartialEq for ExpressionMarking
§impl PartialOrd for ExpressionMarking
impl PartialOrd for ExpressionMarking
§impl TryFrom<&str> for ExpressionMarking
impl TryFrom<&str> for ExpressionMarking
§type Error = DynamicsError
type Error = DynamicsError
The type returned in the event of a conversion error.
§fn try_from(
value: &str,
) -> Result<ExpressionMarking, <ExpressionMarking as TryFrom<&str>>::Error>
fn try_from( value: &str, ) -> Result<ExpressionMarking, <ExpressionMarking as TryFrom<&str>>::Error>
Performs the conversion.
impl Eq for ExpressionMarking
impl StructuralPartialEq for ExpressionMarking
Auto Trait Implementations§
impl Freeze for ExpressionMarking
impl RefUnwindSafe for ExpressionMarking
impl Send for ExpressionMarking
impl Sync for ExpressionMarking
impl Unpin for ExpressionMarking
impl UnsafeUnpin for ExpressionMarking
impl UnwindSafe for ExpressionMarking
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