pub enum MatchPattern {
ConstSymbol(String),
ConstNumber(f64),
Wildcard,
}Expand description
A pattern used in a TLExpr::Match arm.
Patterns are intentionally minimal (Design A):
ConstSymbol(String)— match a symbol literal by name.ConstNumber(f64)— match a numeric literal by value.Wildcard— match anything; must be the last arm in aMatch.
Variants§
ConstSymbol(String)
Match a symbol literal (lowered to Eq(scrutinee, SymbolLiteral(s))).
ConstNumber(f64)
Match a numeric literal (lowered to Eq(scrutinee, Constant(n))).
Wildcard
Wildcard — matches anything. Must be the last arm.
Trait Implementations§
Source§impl Clone for MatchPattern
impl Clone for MatchPattern
Source§fn clone(&self) -> MatchPattern
fn clone(&self) -> MatchPattern
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 MatchPattern
impl Debug for MatchPattern
Source§impl<'de> Deserialize<'de> for MatchPattern
impl<'de> Deserialize<'de> for MatchPattern
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 Display for MatchPattern
impl Display for MatchPattern
Source§impl PartialEq for MatchPattern
impl PartialEq for MatchPattern
Source§impl Serialize for MatchPattern
impl Serialize for MatchPattern
impl StructuralPartialEq for MatchPattern
Auto Trait Implementations§
impl Freeze for MatchPattern
impl RefUnwindSafe for MatchPattern
impl Send for MatchPattern
impl Sync for MatchPattern
impl Unpin for MatchPattern
impl UnsafeUnpin for MatchPattern
impl UnwindSafe for MatchPattern
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