Struct polars_io::json::JsonReader
source · [−]Implementations
sourceimpl<R> JsonReader<R> where
R: BufRead + Seek,
impl<R> JsonReader<R> where
R: BufRead + Seek,
sourcepub fn with_schema(self, schema: &Schema) -> Self
pub fn with_schema(self, schema: &Schema) -> Self
Set the JSON file’s schema
sourcepub fn infer_schema_len(self, max_records: Option<usize>) -> Self
pub fn infer_schema_len(self, max_records: Option<usize>) -> Self
Set the JSON reader to infer the schema of the file
sourcepub fn with_batch_size(self, batch_size: usize) -> Self
pub fn with_batch_size(self, batch_size: usize) -> Self
Set the batch size (number of records to load at one time) This heavily influences loading time.
sourcepub fn with_projection(self, projection: Option<Vec<String>>) -> Self
pub fn with_projection(self, projection: Option<Vec<String>>) -> Self
Set the reader’s column projection
pub fn with_json_format(self, format: JsonFormat) -> Self
Trait Implementations
Auto Trait Implementations
impl<R> RefUnwindSafe for JsonReader<R> where
R: RefUnwindSafe,
impl<R> Send for JsonReader<R> where
R: Send,
impl<R> Sync for JsonReader<R> where
R: Sync,
impl<R> Unpin for JsonReader<R> where
R: Unpin,
impl<R> UnwindSafe for JsonReader<R> where
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more