pub struct AlterCollectionStmt {
pub collection: String,
pub config: Option<Box<CollectionConfig>>,
}Expand description
ALTER COLLECTION <name> statement.
Fields§
§collection: StringCollection to alter.
config: Option<Box<CollectionConfig>>Replacement WITH config blocks.
Trait Implementations§
Source§impl Clone for AlterCollectionStmt
impl Clone for AlterCollectionStmt
Source§fn clone(&self) -> AlterCollectionStmt
fn clone(&self) -> AlterCollectionStmt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AlterCollectionStmt
impl Debug for AlterCollectionStmt
Source§impl PartialEq for AlterCollectionStmt
impl PartialEq for AlterCollectionStmt
impl StructuralPartialEq for AlterCollectionStmt
Auto Trait Implementations§
impl Freeze for AlterCollectionStmt
impl RefUnwindSafe for AlterCollectionStmt
impl Send for AlterCollectionStmt
impl Sync for AlterCollectionStmt
impl Unpin for AlterCollectionStmt
impl UnsafeUnpin for AlterCollectionStmt
impl UnwindSafe for AlterCollectionStmt
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