pub(crate) struct CaseStatementCondition {
pub(crate) condition: Condition,
pub(crate) result: Expr,
}Fields§
§condition: Condition§result: ExprTrait Implementations§
Source§impl Clone for CaseStatementCondition
impl Clone for CaseStatementCondition
Source§fn clone(&self) -> CaseStatementCondition
fn clone(&self) -> CaseStatementCondition
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 moreSource§impl Debug for CaseStatementCondition
impl Debug for CaseStatementCondition
Source§impl PartialEq for CaseStatementCondition
impl PartialEq for CaseStatementCondition
Source§fn eq(&self, other: &CaseStatementCondition) -> bool
fn eq(&self, other: &CaseStatementCondition) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CaseStatementCondition
Auto Trait Implementations§
impl Freeze for CaseStatementCondition
impl RefUnwindSafe for CaseStatementCondition
impl !Send for CaseStatementCondition
impl !Sync for CaseStatementCondition
impl Unpin for CaseStatementCondition
impl UnsafeUnpin for CaseStatementCondition
impl UnwindSafe for CaseStatementCondition
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