pub enum AstWhereRule {
None,
Exists(String),
Is(AstWhereRuleIs),
Impl(AstWhereRuleImpl),
}Variants§
Trait Implementations§
Source§impl Clone for AstWhereRule
impl Clone for AstWhereRule
Source§fn clone(&self) -> AstWhereRule
fn clone(&self) -> AstWhereRule
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 AstWhereRule
impl Debug for AstWhereRule
Auto Trait Implementations§
impl Freeze for AstWhereRule
impl RefUnwindSafe for AstWhereRule
impl Send for AstWhereRule
impl Sync for AstWhereRule
impl Unpin for AstWhereRule
impl UnsafeUnpin for AstWhereRule
impl UnwindSafe for AstWhereRule
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