pub enum ConstantParamExpression {
ConstantMintypmaxExpression(Box<ConstantMintypmaxExpression>),
DataType(Box<DataType>),
Dollar(Box<Symbol>),
}
Variants§
ConstantMintypmaxExpression(Box<ConstantMintypmaxExpression>)
DataType(Box<DataType>)
Dollar(Box<Symbol>)
Trait Implementations§
source§impl Clone for ConstantParamExpression
impl Clone for ConstantParamExpression
source§fn clone(&self) -> ConstantParamExpression
fn clone(&self) -> ConstantParamExpression
Returns a copy 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 ConstantParamExpression
impl Debug for ConstantParamExpression
source§impl<'a> From<&'a ConstantParamExpression> for RefNode<'a>
impl<'a> From<&'a ConstantParamExpression> for RefNode<'a>
source§fn from(x: &'a ConstantParamExpression) -> Self
fn from(x: &'a ConstantParamExpression) -> Self
Converts to this type from the input type.
source§impl<'a> From<&'a ConstantParamExpression> for RefNodes<'a>
impl<'a> From<&'a ConstantParamExpression> for RefNodes<'a>
source§fn from(x: &'a ConstantParamExpression) -> Self
fn from(x: &'a ConstantParamExpression) -> Self
Converts to this type from the input type.
source§impl From<ConstantParamExpression> for AnyNode
impl From<ConstantParamExpression> for AnyNode
source§fn from(x: ConstantParamExpression) -> Self
fn from(x: ConstantParamExpression) -> Self
Converts to this type from the input type.
source§impl<'a> IntoIterator for &'a ConstantParamExpression
impl<'a> IntoIterator for &'a ConstantParamExpression
source§impl PartialEq for ConstantParamExpression
impl PartialEq for ConstantParamExpression
source§fn eq(&self, other: &ConstantParamExpression) -> bool
fn eq(&self, other: &ConstantParamExpression) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> TryFrom<&'a ConstantParamExpression> for Locate
impl<'a> TryFrom<&'a ConstantParamExpression> for Locate
source§impl TryFrom<AnyNode> for ConstantParamExpression
impl TryFrom<AnyNode> for ConstantParamExpression
source§impl TryFrom<ConstantParamExpression> for Locate
impl TryFrom<ConstantParamExpression> for Locate
impl StructuralPartialEq for ConstantParamExpression
Auto Trait Implementations§
impl RefUnwindSafe for ConstantParamExpression
impl Send for ConstantParamExpression
impl Sync for ConstantParamExpression
impl Unpin for ConstantParamExpression
impl UnwindSafe for ConstantParamExpression
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