Struct pgx_pg_sys::ExtensibleNodeMethods[][src]

#[repr(C)]
pub struct ExtensibleNodeMethods { pub extnodename: *const c_char, pub node_size: Size, pub nodeCopy: Option<unsafe extern "C" fn(newnode: *mut ExtensibleNode, oldnode: *const ExtensibleNode)>, pub nodeEqual: Option<unsafe extern "C" fn(a: *const ExtensibleNode, b: *const ExtensibleNode) -> bool>, pub nodeOut: Option<unsafe extern "C" fn(str_: *mut StringInfoData, node: *const ExtensibleNode)>, pub nodeRead: Option<unsafe extern "C" fn(node: *mut ExtensibleNode)>, }

Fields

extnodename: *const c_charnode_size: SizenodeCopy: Option<unsafe extern "C" fn(newnode: *mut ExtensibleNode, oldnode: *const ExtensibleNode)>nodeEqual: Option<unsafe extern "C" fn(a: *const ExtensibleNode, b: *const ExtensibleNode) -> bool>nodeOut: Option<unsafe extern "C" fn(str_: *mut StringInfoData, node: *const ExtensibleNode)>nodeRead: Option<unsafe extern "C" fn(node: *mut ExtensibleNode)>

Trait Implementations

impl Clone for ExtensibleNodeMethods[src]

impl Copy for ExtensibleNodeMethods[src]

impl Debug for ExtensibleNodeMethods[src]

impl Default for ExtensibleNodeMethods[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.