pub struct TableFunctionHandle { /* private fields */ }

Implementations§

source§

impl TableFunctionHandle

source

pub fn create() -> Arc<Self>

source

pub fn set_name(&self, name: &CStr)

source

pub fn add_parameter(&self, type_: &LogicalTypeHandle)

source

pub fn add_named_parameter(&self, name: &CStr, type_: &LogicalTypeHandle)

source

pub unsafe fn set_extra_info( &self, extra_info: *mut c_void, destroy: duckdb_delete_callback_t )

Safety
  • Takes ownership of *extra_info
  • destroy must outlive self
  • destroy() frees extra_info
source

pub unsafe fn set_bind(&self, bind: duckdb_table_function_bind_t)

Safety
  • bind must outlive self
source

pub unsafe fn set_init(&self, init: duckdb_table_function_init_t)

Safety
  • init must outlive self
source

pub unsafe fn set_local_init(&self, init: duckdb_table_function_init_t)

Safety
  • init must outlive self
source

pub unsafe fn set_function(&self, function: duckdb_table_function_t)

Safety
  • init must outlive self
source

pub fn supports_projection_pushdown(&self, pushdown: bool)

Trait Implementations§

source§

impl Debug for TableFunctionHandle

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Deref for TableFunctionHandle

§

type Target = *mut c_void

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl Drop for TableFunctionHandle

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.