pub struct ArrowFormatFactory;
Expand description
Factory struct used to create ArrowFormat
Implementations§
Source§impl ArrowFormatFactory
impl ArrowFormatFactory
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates an instance of ArrowFormatFactory
Trait Implementations§
Source§impl Debug for ArrowFormatFactory
impl Debug for ArrowFormatFactory
Source§impl Default for ArrowFormatFactory
impl Default for ArrowFormatFactory
Source§fn default() -> ArrowFormatFactory
fn default() -> ArrowFormatFactory
Returns the “default value” for a type. Read more
Source§impl FileFormatFactory for ArrowFormatFactory
impl FileFormatFactory for ArrowFormatFactory
Source§fn create(
&self,
_state: &dyn Session,
_format_options: &HashMap<String, String>,
) -> Result<Arc<dyn FileFormat>>
fn create( &self, _state: &dyn Session, _format_options: &HashMap<String, String>, ) -> Result<Arc<dyn FileFormat>>
Initialize a FileFormat and configure based on session and command level options
Source§fn default(&self) -> Arc<dyn FileFormat>
fn default(&self) -> Arc<dyn FileFormat>
Initialize a FileFormat with all options set to default values
Auto Trait Implementations§
impl Freeze for ArrowFormatFactory
impl RefUnwindSafe for ArrowFormatFactory
impl Send for ArrowFormatFactory
impl Sync for ArrowFormatFactory
impl Unpin for ArrowFormatFactory
impl UnwindSafe for ArrowFormatFactory
Blanket Implementations§
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> 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