#[repr(C)]pub struct PLpgSQL_stmt_case {
pub cmd_type: Type,
pub lineno: c_int,
pub stmtid: c_uint,
pub t_expr: *mut PLpgSQL_expr,
pub t_varno: c_int,
pub case_when_list: *mut List,
pub have_else: bool,
pub else_stmts: *mut List,
}
Fields§
§cmd_type: Type
§lineno: c_int
§stmtid: c_uint
§t_expr: *mut PLpgSQL_expr
§t_varno: c_int
§case_when_list: *mut List
§have_else: bool
§else_stmts: *mut List
Trait Implementations§
Source§impl Clone for PLpgSQL_stmt_case
impl Clone for PLpgSQL_stmt_case
Source§fn clone(&self) -> PLpgSQL_stmt_case
fn clone(&self) -> PLpgSQL_stmt_case
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 PLpgSQL_stmt_case
impl Debug for PLpgSQL_stmt_case
Source§impl Default for PLpgSQL_stmt_case
impl Default for PLpgSQL_stmt_case
impl Copy for PLpgSQL_stmt_case
Auto Trait Implementations§
impl Freeze for PLpgSQL_stmt_case
impl RefUnwindSafe for PLpgSQL_stmt_case
impl !Send for PLpgSQL_stmt_case
impl !Sync for PLpgSQL_stmt_case
impl Unpin for PLpgSQL_stmt_case
impl UnwindSafe for PLpgSQL_stmt_case
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