pub(crate) struct RecordDecoderBuilder<'a> {
data_type: &'a AvroDataType,
use_utf8view: bool,
}
Fields§
§data_type: &'a AvroDataType
§use_utf8view: bool
Implementations§
Source§impl<'a> RecordDecoderBuilder<'a>
impl<'a> RecordDecoderBuilder<'a>
pub(crate) fn new(data_type: &'a AvroDataType) -> Self
pub(crate) fn with_utf8_view(self, use_utf8view: bool) -> Self
Sourcepub(crate) fn build(self) -> Result<RecordDecoder, ArrowError>
pub(crate) fn build(self) -> Result<RecordDecoder, ArrowError>
Builds the RecordDecoder
.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for RecordDecoderBuilder<'a>
impl<'a> RefUnwindSafe for RecordDecoderBuilder<'a>
impl<'a> Send for RecordDecoderBuilder<'a>
impl<'a> Sync for RecordDecoderBuilder<'a>
impl<'a> Unpin for RecordDecoderBuilder<'a>
impl<'a> UnwindSafe for RecordDecoderBuilder<'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