pub enum AlterTriggerOperation {
RenameTo {
new_name: Ident,
},
}Expand description
An AlterTrigger operation.
Variants§
Trait Implementations§
Source§impl Clone for AlterTriggerOperation
impl Clone for AlterTriggerOperation
Source§fn clone(&self) -> AlterTriggerOperation
fn clone(&self) -> AlterTriggerOperation
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 AlterTriggerOperation
impl Debug for AlterTriggerOperation
Source§impl<'de> Deserialize<'de> for AlterTriggerOperation
impl<'de> Deserialize<'de> for AlterTriggerOperation
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 AlterTriggerOperation
impl Display for AlterTriggerOperation
Source§impl Hash for AlterTriggerOperation
impl Hash for AlterTriggerOperation
Source§impl Ord for AlterTriggerOperation
impl Ord for AlterTriggerOperation
Source§fn cmp(&self, other: &AlterTriggerOperation) -> Ordering
fn cmp(&self, other: &AlterTriggerOperation) -> 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 AlterTriggerOperation
impl PartialEq for AlterTriggerOperation
Source§impl PartialOrd for AlterTriggerOperation
impl PartialOrd for AlterTriggerOperation
Source§impl Serialize for AlterTriggerOperation
impl Serialize for AlterTriggerOperation
Source§impl Visit for AlterTriggerOperation
impl Visit for AlterTriggerOperation
Source§impl VisitMut for AlterTriggerOperation
impl VisitMut for AlterTriggerOperation
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for AlterTriggerOperation
impl StructuralPartialEq for AlterTriggerOperation
Auto Trait Implementations§
impl Freeze for AlterTriggerOperation
impl RefUnwindSafe for AlterTriggerOperation
impl Send for AlterTriggerOperation
impl Sync for AlterTriggerOperation
impl Unpin for AlterTriggerOperation
impl UnsafeUnpin for AlterTriggerOperation
impl UnwindSafe for AlterTriggerOperation
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