pub struct FFI_ConfigOptions { /* private fields */ }Expand description
A stable struct for sharing ConfigOptions across FFI boundaries.
Accessing FFI extension options require a slightly different pattern
than local extensions. The trait ExtensionOptionsFFIProvider can
be used to simplify accessing FFI extensions.
Trait Implementations§
Source§impl Clone for FFI_ConfigOptions
impl Clone for FFI_ConfigOptions
Source§fn clone(&self) -> FFI_ConfigOptions
fn clone(&self) -> FFI_ConfigOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FFI_ConfigOptions
impl Debug for FFI_ConfigOptions
Source§impl From<&ConfigOptions> for FFI_ConfigOptions
impl From<&ConfigOptions> for FFI_ConfigOptions
Source§fn from(options: &ConfigOptions) -> Self
fn from(options: &ConfigOptions) -> Self
Converts to this type from the input type.
Source§impl TryFrom<FFI_ConfigOptions> for ConfigOptions
impl TryFrom<FFI_ConfigOptions> for ConfigOptions
Source§type Error = DataFusionError
type Error = DataFusionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for FFI_ConfigOptions
impl RefUnwindSafe for FFI_ConfigOptions
impl Send for FFI_ConfigOptions
impl Sync for FFI_ConfigOptions
impl Unpin for FFI_ConfigOptions
impl UnsafeUnpin for FFI_ConfigOptions
impl UnwindSafe for FFI_ConfigOptions
Blanket Implementations§
Source§impl<Source> AccessAs for Source
impl<Source> AccessAs for Source
impl<T> Allocation for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more