#[repr(C)]pub struct CreateFunctionStmt {
pub type_: NodeTag,
pub is_procedure: bool,
pub replace: bool,
pub funcname: *mut List,
pub parameters: *mut List,
pub returnType: *mut TypeName,
pub options: *mut List,
pub sql_body: *mut Node,
}
Fields§
§type_: NodeTag
§is_procedure: bool
§replace: bool
§funcname: *mut List
§parameters: *mut List
§returnType: *mut TypeName
§options: *mut List
§sql_body: *mut Node
Trait Implementations§
Source§impl Clone for CreateFunctionStmt
impl Clone for CreateFunctionStmt
Source§fn clone(&self) -> CreateFunctionStmt
fn clone(&self) -> CreateFunctionStmt
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 CreateFunctionStmt
impl Debug for CreateFunctionStmt
Source§impl Default for CreateFunctionStmt
impl Default for CreateFunctionStmt
Source§impl Display for CreateFunctionStmt
impl Display for CreateFunctionStmt
Source§impl PgNode for CreateFunctionStmt
impl PgNode for CreateFunctionStmt
Source§fn display_node(&self) -> String
fn display_node(&self) -> String
Format this node Read more
impl Copy for CreateFunctionStmt
Auto Trait Implementations§
impl Freeze for CreateFunctionStmt
impl RefUnwindSafe for CreateFunctionStmt
impl !Send for CreateFunctionStmt
impl !Sync for CreateFunctionStmt
impl Unpin for CreateFunctionStmt
impl UnwindSafe for CreateFunctionStmt
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