pub struct ScalarExpression {
pub base: Option<ScalarBase>,
pub predicates: Vec<ScalarPredicate>,
}Fields§
§base: Option<ScalarBase>§predicates: Vec<ScalarPredicate>Implementations§
Source§impl ScalarExpression
impl ScalarExpression
pub fn new(base: Option<ScalarBase>, predicates: Vec<ScalarPredicate>) -> Self
Trait Implementations§
Source§impl Clone for ScalarExpression
impl Clone for ScalarExpression
Source§fn clone(&self) -> ScalarExpression
fn clone(&self) -> ScalarExpression
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 ScalarExpression
impl Debug for ScalarExpression
Source§impl PartialEq for ScalarExpression
impl PartialEq for ScalarExpression
Source§fn eq(&self, other: &ScalarExpression) -> bool
fn eq(&self, other: &ScalarExpression) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScalarExpression
Auto Trait Implementations§
impl Freeze for ScalarExpression
impl RefUnwindSafe for ScalarExpression
impl Send for ScalarExpression
impl Sync for ScalarExpression
impl Unpin for ScalarExpression
impl UnsafeUnpin for ScalarExpression
impl UnwindSafe for ScalarExpression
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