enum Arity {
Nullary,
Unary {
arena: bool,
},
Binary {
arena: bool,
},
Variadic {
arena: bool,
has_self: bool,
},
}Expand description
Arity classification for a function annotated with #[sqlfunc].
Variants§
Auto Trait Implementations§
impl Freeze for Arity
impl RefUnwindSafe for Arity
impl Send for Arity
impl Sync for Arity
impl Unpin for Arity
impl UnwindSafe for Arity
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