Enum udf_sys::Item_udftype
source · #[repr(u32)]
#[non_exhaustive]
pub enum Item_udftype {
UDFTYPE_FUNCTION,
UDFTYPE_AGGREGATE,
}Expand description
A UDF function type indicator, currently unused
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
UDFTYPE_FUNCTION
UDFTYPE_AGGREGATE
Trait Implementations
sourceimpl Clone for Item_udftype
impl Clone for Item_udftype
sourcefn clone(&self) -> Item_udftype
fn clone(&self) -> Item_udftype
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for Item_udftype
impl Debug for Item_udftype
sourceimpl Hash for Item_udftype
impl Hash for Item_udftype
sourceimpl PartialEq<Item_udftype> for Item_udftype
impl PartialEq<Item_udftype> for Item_udftype
sourcefn eq(&self, other: &Item_udftype) -> bool
fn eq(&self, other: &Item_udftype) -> bool
impl Eq for Item_udftype
impl StructuralEq for Item_udftype
impl StructuralPartialEq for Item_udftype
Auto Trait Implementations
impl RefUnwindSafe for Item_udftype
impl Send for Item_udftype
impl Sync for Item_udftype
impl Unpin for Item_udftype
impl UnwindSafe for Item_udftype
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more