Struct datafusion_sql::parser::CopyToStatement
source · pub struct CopyToStatement {
pub source: CopyToSource,
pub target: String,
pub options: Vec<(String, Value)>,
}Expand description
Fields§
§source: CopyToSourceFrom where the data comes from
target: StringThe URL to where the data is heading
options: Vec<(String, Value)>Target specific options
Trait Implementations§
source§impl Clone for CopyToStatement
impl Clone for CopyToStatement
source§fn clone(&self) -> CopyToStatement
fn clone(&self) -> CopyToStatement
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 CopyToStatement
impl Debug for CopyToStatement
source§impl Display for CopyToStatement
impl Display for CopyToStatement
source§impl PartialEq<CopyToStatement> for CopyToStatement
impl PartialEq<CopyToStatement> for CopyToStatement
source§fn eq(&self, other: &CopyToStatement) -> bool
fn eq(&self, other: &CopyToStatement) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for CopyToStatement
impl StructuralEq for CopyToStatement
impl StructuralPartialEq for CopyToStatement
Auto Trait Implementations§
impl RefUnwindSafe for CopyToStatement
impl Send for CopyToStatement
impl Sync for CopyToStatement
impl Unpin for CopyToStatement
impl UnwindSafe for CopyToStatement
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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.