pub enum TermMatchResult {
Match,
NoMatch,
}Expand description
Term matching result
Variants§
Trait Implementations§
Source§impl Clone for TermMatchResult
impl Clone for TermMatchResult
Source§fn clone(&self) -> TermMatchResult
fn clone(&self) -> TermMatchResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TermMatchResult
Source§impl Debug for TermMatchResult
impl Debug for TermMatchResult
impl Eq for TermMatchResult
Source§impl PartialEq for TermMatchResult
impl PartialEq for TermMatchResult
Source§fn eq(&self, other: &TermMatchResult) -> bool
fn eq(&self, other: &TermMatchResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TermMatchResult
Auto Trait Implementations§
impl Freeze for TermMatchResult
impl RefUnwindSafe for TermMatchResult
impl Send for TermMatchResult
impl Sync for TermMatchResult
impl Unpin for TermMatchResult
impl UnsafeUnpin for TermMatchResult
impl UnwindSafe for TermMatchResult
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