pub struct EncodedFileInput { /* private fields */ }Expand description
One complete immutable Lance file supplied to concat_files.
Implementations§
Source§impl EncodedFileInput
impl EncodedFileInput
Sourcepub fn new(scheduler: FileScheduler) -> Self
pub fn new(scheduler: FileScheduler) -> Self
Create an input from an already-open file scheduler.
Sourcepub fn with_expected_num_rows(self, expected_num_rows: u64) -> Self
pub fn with_expected_num_rows(self, expected_num_rows: u64) -> Self
Require the file metadata to report this physical row count.
A mismatch is an input error, not a compatibility result.
Trait Implementations§
Source§impl Clone for EncodedFileInput
impl Clone for EncodedFileInput
Source§fn clone(&self) -> EncodedFileInput
fn clone(&self) -> EncodedFileInput
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for EncodedFileInput
impl !UnwindSafe for EncodedFileInput
impl Freeze for EncodedFileInput
impl Send for EncodedFileInput
impl Sync for EncodedFileInput
impl Unpin for EncodedFileInput
impl UnsafeUnpin for EncodedFileInput
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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