Struct datafusion_expr::logical_plan::CreateIndex
source · pub struct CreateIndex {
pub name: Option<String>,
pub table: TableReference,
pub using: Option<String>,
pub columns: Vec<Expr>,
pub unique: bool,
pub if_not_exists: bool,
pub schema: DFSchemaRef,
}
Fields§
§name: Option<String>
§table: TableReference
§using: Option<String>
§columns: Vec<Expr>
§unique: bool
§if_not_exists: bool
§schema: DFSchemaRef
Trait Implementations§
source§impl Clone for CreateIndex
impl Clone for CreateIndex
source§fn clone(&self) -> CreateIndex
fn clone(&self) -> CreateIndex
Returns a copy 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 CreateIndex
impl Debug for CreateIndex
source§impl Hash for CreateIndex
impl Hash for CreateIndex
source§impl PartialEq for CreateIndex
impl PartialEq for CreateIndex
impl Eq for CreateIndex
impl StructuralPartialEq for CreateIndex
Auto Trait Implementations§
impl Freeze for CreateIndex
impl !RefUnwindSafe for CreateIndex
impl Send for CreateIndex
impl Sync for CreateIndex
impl Unpin for CreateIndex
impl !UnwindSafe for CreateIndex
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.