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