pub enum HasParamList {
Aggregate(Aggregate),
CreateAggregate(CreateAggregate),
CreateFunction(CreateFunction),
CreateProcedure(CreateProcedure),
FunctionSig(FunctionSig),
ProcedureSig(ProcedureSig),
RoutineSig(RoutineSig),
}Variants§
Aggregate(Aggregate)
CreateAggregate(CreateAggregate)
CreateFunction(CreateFunction)
CreateProcedure(CreateProcedure)
FunctionSig(FunctionSig)
ProcedureSig(ProcedureSig)
RoutineSig(RoutineSig)
Implementations§
Trait Implementations§
Source§impl AstNode for HasParamList
impl AstNode for HasParamList
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl Clone for HasParamList
impl Clone for HasParamList
Source§fn clone(&self) -> HasParamList
fn clone(&self) -> HasParamList
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 HasParamList
impl Debug for HasParamList
impl Eq for HasParamList
Source§impl From<Aggregate> for HasParamList
impl From<Aggregate> for HasParamList
Source§fn from(node: Aggregate) -> HasParamList
fn from(node: Aggregate) -> HasParamList
Converts to this type from the input type.
Source§impl From<CreateAggregate> for HasParamList
impl From<CreateAggregate> for HasParamList
Source§fn from(node: CreateAggregate) -> HasParamList
fn from(node: CreateAggregate) -> HasParamList
Converts to this type from the input type.
Source§impl From<CreateFunction> for HasParamList
impl From<CreateFunction> for HasParamList
Source§fn from(node: CreateFunction) -> HasParamList
fn from(node: CreateFunction) -> HasParamList
Converts to this type from the input type.
Source§impl From<CreateProcedure> for HasParamList
impl From<CreateProcedure> for HasParamList
Source§fn from(node: CreateProcedure) -> HasParamList
fn from(node: CreateProcedure) -> HasParamList
Converts to this type from the input type.
Source§impl From<FunctionSig> for HasParamList
impl From<FunctionSig> for HasParamList
Source§fn from(node: FunctionSig) -> HasParamList
fn from(node: FunctionSig) -> HasParamList
Converts to this type from the input type.
Source§impl From<ProcedureSig> for HasParamList
impl From<ProcedureSig> for HasParamList
Source§fn from(node: ProcedureSig) -> HasParamList
fn from(node: ProcedureSig) -> HasParamList
Converts to this type from the input type.
Source§impl From<RoutineSig> for HasParamList
impl From<RoutineSig> for HasParamList
Source§fn from(node: RoutineSig) -> HasParamList
fn from(node: RoutineSig) -> HasParamList
Converts to this type from the input type.
Source§impl Hash for HasParamList
impl Hash for HasParamList
Source§impl PartialEq for HasParamList
impl PartialEq for HasParamList
impl StructuralPartialEq for HasParamList
Auto Trait Implementations§
impl !RefUnwindSafe for HasParamList
impl !Send for HasParamList
impl !Sync for HasParamList
impl !UnwindSafe for HasParamList
impl Freeze for HasParamList
impl Unpin for HasParamList
impl UnsafeUnpin for HasParamList
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more