pub enum FilePushdownSupport {
NoSupport,
NotSupportedForFilter,
Supported,
}Expand description
An enum to distinguish between different states when determining if certain filters can be pushed down to file scanning
Variants§
NoSupport
The file format/system being asked does not support any sort of pushdown. This should be used even if the file format theoretically supports some sort of pushdown, but it’s not enabled or implemented yet.
NotSupportedForFilter
The file format/system being asked does support pushdown, but it can’t make it work for the provided filter/expression
Supported
The file format/system being asked does support pushdown and can make it work for the provided filter/expression
Trait Implementations§
Source§impl Debug for FilePushdownSupport
impl Debug for FilePushdownSupport
Source§impl PartialEq for FilePushdownSupport
impl PartialEq for FilePushdownSupport
impl StructuralPartialEq for FilePushdownSupport
Auto Trait Implementations§
impl Freeze for FilePushdownSupport
impl RefUnwindSafe for FilePushdownSupport
impl Send for FilePushdownSupport
impl Sync for FilePushdownSupport
impl Unpin for FilePushdownSupport
impl UnwindSafe for FilePushdownSupport
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