pub enum FunctionArgType {
Typed(ColumnTypeName),
Raw(String),
}Variants§
Typed(ColumnTypeName)
Raw(String)
Unknown / extension types — kept as the parser-side raw identifier so error messages can name them precisely.
Trait Implementations§
Source§impl Clone for FunctionArgType
impl Clone for FunctionArgType
Source§fn clone(&self) -> FunctionArgType
fn clone(&self) -> FunctionArgType
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 FunctionArgType
impl Debug for FunctionArgType
Source§impl PartialEq for FunctionArgType
impl PartialEq for FunctionArgType
Source§fn eq(&self, other: &FunctionArgType) -> bool
fn eq(&self, other: &FunctionArgType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FunctionArgType
Auto Trait Implementations§
impl Freeze for FunctionArgType
impl RefUnwindSafe for FunctionArgType
impl Send for FunctionArgType
impl Sync for FunctionArgType
impl Unpin for FunctionArgType
impl UnsafeUnpin for FunctionArgType
impl UnwindSafe for FunctionArgType
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