pub struct AlterSet {
pub expressions: Vec<Expression>,
pub option: Option<Box<Expression>>,
pub tablespace: Option<Box<Expression>>,
pub access_method: Option<Box<Expression>>,
pub file_format: Option<Box<Expression>>,
pub copy_options: Option<Box<Expression>>,
pub tag: Option<Box<Expression>>,
pub location: Option<Box<Expression>>,
pub serde: Option<Box<Expression>>,
}Expand description
AlterSet
Fields§
§expressions: Vec<Expression>§option: Option<Box<Expression>>§tablespace: Option<Box<Expression>>§access_method: Option<Box<Expression>>§file_format: Option<Box<Expression>>§copy_options: Option<Box<Expression>>§tag: Option<Box<Expression>>§location: Option<Box<Expression>>§serde: Option<Box<Expression>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for AlterSet
impl<'de> Deserialize<'de> for AlterSet
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
impl StructuralPartialEq for AlterSet
Auto Trait Implementations§
impl Freeze for AlterSet
impl RefUnwindSafe for AlterSet
impl Send for AlterSet
impl Sync for AlterSet
impl Unpin for AlterSet
impl UnwindSafe for AlterSet
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