#[repr(C)]pub struct CreateSchemaStmt {
pub type_: NodeTag,
pub schemaname: *mut c_char,
pub authrole: *mut RoleSpec,
pub schemaElts: *mut List,
pub if_not_exists: bool,
}
Fields§
§type_: NodeTag
§schemaname: *mut c_char
§authrole: *mut RoleSpec
§schemaElts: *mut List
§if_not_exists: bool
Trait Implementations§
Source§impl Clone for CreateSchemaStmt
impl Clone for CreateSchemaStmt
Source§fn clone(&self) -> CreateSchemaStmt
fn clone(&self) -> CreateSchemaStmt
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 CreateSchemaStmt
impl Debug for CreateSchemaStmt
Source§impl Default for CreateSchemaStmt
impl Default for CreateSchemaStmt
Source§impl Display for CreateSchemaStmt
impl Display for CreateSchemaStmt
Source§impl PgNode for CreateSchemaStmt
impl PgNode for CreateSchemaStmt
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for CreateSchemaStmt
Auto Trait Implementations§
impl Freeze for CreateSchemaStmt
impl RefUnwindSafe for CreateSchemaStmt
impl !Send for CreateSchemaStmt
impl !Sync for CreateSchemaStmt
impl Unpin for CreateSchemaStmt
impl UnwindSafe for CreateSchemaStmt
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