Struct skar_client::ParquetConfig
source · pub struct ParquetConfig {
pub path: String,
pub hex_output: bool,
pub batch_size: u64,
pub concurrency: usize,
pub retry: bool,
}Fields§
§path: StringPath to write parquet files to
hex_output: boolConvert binary output columns to hex
batch_size: u64Block range size to use when making individual requests.
concurrency: usizeControls the number of concurrent requests made to hypersync server.
retry: boolRequests are retried forever internally if this param is set to true.
Trait Implementations§
source§impl Clone for ParquetConfig
impl Clone for ParquetConfig
source§fn clone(&self) -> ParquetConfig
fn clone(&self) -> ParquetConfig
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 Debug for ParquetConfig
impl Debug for ParquetConfig
source§impl<'de> Deserialize<'de> for ParquetConfig
impl<'de> Deserialize<'de> for ParquetConfig
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ParquetConfig
impl Send for ParquetConfig
impl Sync for ParquetConfig
impl Unpin for ParquetConfig
impl UnwindSafe for ParquetConfig
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