pub enum OperatorOption {
Restrict(Option<ObjectName>),
Join(Option<ObjectName>),
Commutator(ObjectName),
Negator(ObjectName),
Hashes,
Merges,
}Expand description
Option for ALTER OPERATOR SET operation
Variants§
Restrict(Option<ObjectName>)
RESTRICT = { res_proc | NONE }
Join(Option<ObjectName>)
JOIN = { join_proc | NONE }
Commutator(ObjectName)
COMMUTATOR = com_op
Negator(ObjectName)
NEGATOR = neg_op
Hashes
HASHES
Merges
MERGES
Trait Implementations§
Source§impl Clone for OperatorOption
impl Clone for OperatorOption
Source§fn clone(&self) -> OperatorOption
fn clone(&self) -> OperatorOption
Returns a duplicate of the value. Read more
1.0.0 · 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 OperatorOption
impl Debug for OperatorOption
Source§impl<'de> Deserialize<'de> for OperatorOption
impl<'de> Deserialize<'de> for OperatorOption
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for OperatorOption
impl Display for OperatorOption
Source§impl Hash for OperatorOption
impl Hash for OperatorOption
Source§impl Ord for OperatorOption
impl Ord for OperatorOption
Source§fn cmp(&self, other: &OperatorOption) -> Ordering
fn cmp(&self, other: &OperatorOption) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OperatorOption
impl PartialEq for OperatorOption
Source§impl PartialOrd for OperatorOption
impl PartialOrd for OperatorOption
Source§impl Serialize for OperatorOption
impl Serialize for OperatorOption
Source§impl Visit for OperatorOption
impl Visit for OperatorOption
Source§impl VisitMut for OperatorOption
impl VisitMut for OperatorOption
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
impl Eq for OperatorOption
impl StructuralPartialEq for OperatorOption
Auto Trait Implementations§
impl Freeze for OperatorOption
impl RefUnwindSafe for OperatorOption
impl Send for OperatorOption
impl Sync for OperatorOption
impl Unpin for OperatorOption
impl UnwindSafe for OperatorOption
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