pub struct MatchAgainst {
pub this: Box<Expression>,
pub expressions: Vec<Expression>,
pub modifier: Option<Box<Expression>>,
}Expand description
MatchAgainst
Fields§
§this: Box<Expression>§expressions: Vec<Expression>§modifier: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for MatchAgainst
impl Clone for MatchAgainst
Source§fn clone(&self) -> MatchAgainst
fn clone(&self) -> MatchAgainst
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 MatchAgainst
impl Debug for MatchAgainst
Source§impl<'de> Deserialize<'de> for MatchAgainst
impl<'de> Deserialize<'de> for MatchAgainst
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 PartialEq for MatchAgainst
impl PartialEq for MatchAgainst
Source§impl Serialize for MatchAgainst
impl Serialize for MatchAgainst
impl StructuralPartialEq for MatchAgainst
Auto Trait Implementations§
impl Freeze for MatchAgainst
impl RefUnwindSafe for MatchAgainst
impl Send for MatchAgainst
impl Sync for MatchAgainst
impl Unpin for MatchAgainst
impl UnwindSafe for MatchAgainst
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