Struct datafusion_expr::logical_plan::DropCatalogSchema
source · pub struct DropCatalogSchema {
pub name: OwnedSchemaReference,
pub if_exists: bool,
pub cascade: bool,
pub schema: DFSchemaRef,
}Expand description
Drops a schema
Fields§
§name: OwnedSchemaReferenceThe schema name
if_exists: boolIf the schema exists
cascade: boolWhether drop should cascade
schema: DFSchemaRefDummy schema
Trait Implementations§
source§impl Clone for DropCatalogSchema
impl Clone for DropCatalogSchema
source§fn clone(&self) -> DropCatalogSchema
fn clone(&self) -> DropCatalogSchema
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 Hash for DropCatalogSchema
impl Hash for DropCatalogSchema
source§impl PartialEq for DropCatalogSchema
impl PartialEq for DropCatalogSchema
source§fn eq(&self, other: &DropCatalogSchema) -> bool
fn eq(&self, other: &DropCatalogSchema) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for DropCatalogSchema
impl StructuralEq for DropCatalogSchema
impl StructuralPartialEq for DropCatalogSchema
Auto Trait Implementations§
impl RefUnwindSafe for DropCatalogSchema
impl Send for DropCatalogSchema
impl Sync for DropCatalogSchema
impl Unpin for DropCatalogSchema
impl UnwindSafe for DropCatalogSchema
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.