pub struct GenerateSeriesFunc {}Trait Implementations§
Source§impl Debug for GenerateSeriesFunc
impl Debug for GenerateSeriesFunc
Source§impl TableFunctionImpl for GenerateSeriesFunc
impl TableFunctionImpl for GenerateSeriesFunc
Source§fn call_with_args(
&self,
args: TableFunctionArgs<'_, '_>,
) -> Result<Arc<dyn TableProvider>>
fn call_with_args( &self, args: TableFunctionArgs<'_, '_>, ) -> Result<Arc<dyn TableProvider>>
Create a table provider
Source§fn call(
&self,
_exprs: &[Expr],
) -> Result<Arc<dyn TableProvider>, DataFusionError>
fn call( &self, _exprs: &[Expr], ) -> Result<Arc<dyn TableProvider>, DataFusionError>
👎Deprecated since 53.0.0:
Implement TableFunctionImpl::call_with_args instead
Create a table provider
Auto Trait Implementations§
impl Freeze for GenerateSeriesFunc
impl RefUnwindSafe for GenerateSeriesFunc
impl Send for GenerateSeriesFunc
impl Sync for GenerateSeriesFunc
impl Unpin for GenerateSeriesFunc
impl UnsafeUnpin for GenerateSeriesFunc
impl UnwindSafe for GenerateSeriesFunc
Blanket Implementations§
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> 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