pub struct AlterExtension {
pub name: Ident,
pub operation: AlterExtensionOperation,
}Expand description
ALTER EXTENSION statement.
Fields§
§name: IdentName of the extension being altered.
operation: AlterExtensionOperationThe operation to perform.
Trait Implementations§
Source§impl Clone for AlterExtension
impl Clone for AlterExtension
Source§fn clone(&self) -> AlterExtension
fn clone(&self) -> AlterExtension
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 AlterExtension
impl Debug for AlterExtension
Source§impl<'de> Deserialize<'de> for AlterExtension
impl<'de> Deserialize<'de> for AlterExtension
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 AlterExtension
impl Display for AlterExtension
Source§impl From<AlterExtension> for Statement
impl From<AlterExtension> for Statement
Source§fn from(a: AlterExtension) -> Self
fn from(a: AlterExtension) -> Self
Converts to this type from the input type.
Source§impl Hash for AlterExtension
impl Hash for AlterExtension
Source§impl Ord for AlterExtension
impl Ord for AlterExtension
Source§fn cmp(&self, other: &AlterExtension) -> Ordering
fn cmp(&self, other: &AlterExtension) -> 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 AlterExtension
impl PartialEq for AlterExtension
Source§impl PartialOrd for AlterExtension
impl PartialOrd for AlterExtension
Source§impl Serialize for AlterExtension
impl Serialize for AlterExtension
Source§impl Visit for AlterExtension
impl Visit for AlterExtension
Source§impl VisitMut for AlterExtension
impl VisitMut for AlterExtension
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 AlterExtension
impl StructuralPartialEq for AlterExtension
Auto Trait Implementations§
impl Freeze for AlterExtension
impl RefUnwindSafe for AlterExtension
impl Send for AlterExtension
impl Sync for AlterExtension
impl Unpin for AlterExtension
impl UnsafeUnpin for AlterExtension
impl UnwindSafe for AlterExtension
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