pub struct ArrowIpcDecoderOptions {
pub max_size: Option<usize>,
}Expand description
Options for configuring Arrow IPC decoding.
Fields§
§max_size: Option<usize>Maximum size of a single message in bytes.
Trait Implementations§
Source§impl Clone for ArrowIpcDecoderOptions
impl Clone for ArrowIpcDecoderOptions
Source§fn clone(&self) -> ArrowIpcDecoderOptions
fn clone(&self) -> ArrowIpcDecoderOptions
Returns a duplicate 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 ArrowIpcDecoderOptions
impl Debug for ArrowIpcDecoderOptions
Source§impl DecoderConfig for ArrowIpcDecoderOptions
impl DecoderConfig for ArrowIpcDecoderOptions
Source§impl Default for ArrowIpcDecoderOptions
impl Default for ArrowIpcDecoderOptions
Source§impl<'de> Deserialize<'de> for ArrowIpcDecoderOptions
impl<'de> Deserialize<'de> for ArrowIpcDecoderOptions
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
Source§impl PartialEq for ArrowIpcDecoderOptions
impl PartialEq for ArrowIpcDecoderOptions
Source§impl Serialize for ArrowIpcDecoderOptions
impl Serialize for ArrowIpcDecoderOptions
impl StructuralPartialEq for ArrowIpcDecoderOptions
Auto Trait Implementations§
impl Freeze for ArrowIpcDecoderOptions
impl RefUnwindSafe for ArrowIpcDecoderOptions
impl Send for ArrowIpcDecoderOptions
impl Sync for ArrowIpcDecoderOptions
impl Unpin for ArrowIpcDecoderOptions
impl UnsafeUnpin for ArrowIpcDecoderOptions
impl UnwindSafe for ArrowIpcDecoderOptions
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