Trait BoxRet

Source
pub unsafe trait BoxRet: Sized {
    // Required method
    unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>;
}
Expand description

Simplified variant of RetAbi.

In order to handle all of the nuances of the calling convention for returning result sets from Postgres functions, pgrx uses a very complicated trait, RetAbi. In practice, however, most types do not need to think about its many sharp-edged cases. Instead, they should implement this simplified trait, BoxRet. A blanket impl of RetAbi for BoxRet takes care of the rest.

Required Methods§

Source

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

§Safety

You have to actually return the resulting Datum to the function.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl BoxRet for bool

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for char

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for f32

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for f64

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for i8

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for i16

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for i32

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for i64

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for ()

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for String

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl BoxRet for Vec<u8>

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl<'a> BoxRet for &'a str

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl<'a> BoxRet for &'a CStr

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl<'a> BoxRet for &'a [u8]

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl<T> BoxRet for Option<T>
where T: BoxRet,

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Source§

impl<T> BoxRet for Vec<T>
where T: IntoDatum,

Source§

unsafe fn box_into<'fcx>(self, fcinfo: &mut FcInfo<'fcx>) -> Datum<'fcx>

Implementors§