Struct pgx_pg_sys::DecodedBkpBlock[][src]

#[repr(C)]
pub struct DecodedBkpBlock {
Show fields pub in_use: bool, pub rnode: RelFileNode, pub forknum: ForkNumber, pub blkno: BlockNumber, pub flags: uint8, pub has_image: bool, pub apply_image: bool, pub bkp_image: *mut c_char, pub hole_offset: uint16, pub hole_length: uint16, pub bimg_len: uint16, pub bimg_info: uint8, pub has_data: bool, pub data: *mut c_char, pub data_len: uint16, pub data_bufsz: uint16,
}

Fields

in_use: boolrnode: RelFileNodeforknum: ForkNumberblkno: BlockNumberflags: uint8has_image: boolapply_image: boolbkp_image: *mut c_charhole_offset: uint16hole_length: uint16bimg_len: uint16bimg_info: uint8has_data: booldata: *mut c_chardata_len: uint16data_bufsz: uint16

Trait Implementations

impl Clone for DecodedBkpBlock[src]

impl Copy for DecodedBkpBlock[src]

impl Debug for DecodedBkpBlock[src]

impl Default for DecodedBkpBlock[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.