pub enum RoutineReturnSyntax {
Scalar {
data_type: ProceduralType,
nullable: bool,
},
Table(Vec<ResultColumnSyntax>),
Trigger,
}Variants§
Trait Implementations§
Source§impl Clone for RoutineReturnSyntax
impl Clone for RoutineReturnSyntax
Source§fn clone(&self) -> RoutineReturnSyntax
fn clone(&self) -> RoutineReturnSyntax
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 RoutineReturnSyntax
impl Debug for RoutineReturnSyntax
Source§impl Display for RoutineReturnSyntax
impl Display for RoutineReturnSyntax
Source§impl PartialEq for RoutineReturnSyntax
impl PartialEq for RoutineReturnSyntax
impl StructuralPartialEq for RoutineReturnSyntax
Auto Trait Implementations§
impl Freeze for RoutineReturnSyntax
impl RefUnwindSafe for RoutineReturnSyntax
impl Send for RoutineReturnSyntax
impl Sync for RoutineReturnSyntax
impl Unpin for RoutineReturnSyntax
impl UnsafeUnpin for RoutineReturnSyntax
impl UnwindSafe for RoutineReturnSyntax
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