pub enum ScanSourceRef<'a> {
Path(&'a Path),
File(&'a File),
Buffer(&'a Bytes),
}
Expand description
A reference to a single item in ScanSources
Variants§
Implementations§
Source§impl<'a> ScanSourceRef<'a>
impl<'a> ScanSourceRef<'a>
Sourcepub fn to_include_path_name(&self) -> &str
pub fn to_include_path_name(&self) -> &str
Get the name for include_paths
Sourcepub fn to_memslice(&self) -> PolarsResult<MemSlice>
pub fn to_memslice(&self) -> PolarsResult<MemSlice>
Turn the scan source into a memory slice
pub fn to_memslice_async_latest( &self, run_async: bool, ) -> PolarsResult<MemSlice>
pub fn to_memslice_possibly_async( &self, run_async: bool, cache_entries: Option<&Vec<Arc<FileCacheEntry>>>, index: usize, ) -> PolarsResult<MemSlice>
pub async fn to_dyn_byte_source( &self, builder: &DynByteSourceBuilder, cloud_options: Option<&CloudOptions>, ) -> PolarsResult<DynByteSource>
Available on crate feature
cloud
only.Trait Implementations§
Source§impl<'a> Clone for ScanSourceRef<'a>
impl<'a> Clone for ScanSourceRef<'a>
Source§fn clone(&self) -> ScanSourceRef<'a>
fn clone(&self) -> ScanSourceRef<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> Debug for ScanSourceRef<'a>
impl<'a> Debug for ScanSourceRef<'a>
Source§impl Display for ScanSourceRef<'_>
impl Display for ScanSourceRef<'_>
impl<'a> Copy for ScanSourceRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for ScanSourceRef<'a>
impl<'a> RefUnwindSafe for ScanSourceRef<'a>
impl<'a> Send for ScanSourceRef<'a>
impl<'a> Sync for ScanSourceRef<'a>
impl<'a> Unpin for ScanSourceRef<'a>
impl<'a> UnwindSafe for ScanSourceRef<'a>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string()
Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more