pub struct CopyStmt {
pub relation: Option<Box<RangeVar>>,
pub query: Option<Box<Node>>,
pub attlist: Option<Vec<Node>>,
pub is_from: bool,
pub is_program: bool,
pub filename: Option<String>,
pub options: Option<Vec<Node>>,
pub where_clause: Option<Box<Node>>,
}
Fields§
§relation: Option<Box<RangeVar>>
§query: Option<Box<Node>>
§attlist: Option<Vec<Node>>
§is_from: bool
§is_program: bool
§filename: Option<String>
§options: Option<Vec<Node>>
§where_clause: Option<Box<Node>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CopyStmt
impl<'de> Deserialize<'de> for CopyStmt
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
Auto Trait Implementations§
impl Freeze for CopyStmt
impl RefUnwindSafe for CopyStmt
impl Send for CopyStmt
impl Sync for CopyStmt
impl Unpin for CopyStmt
impl UnwindSafe for CopyStmt
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