pub struct Serializer<A, I> where
A: AsRef<dyn Array + 'static>,
I: Iterator<Item = Result<A, ArrowError>>, { /* private fields */ }
io_json
only.Expand description
FallibleStreamingIterator
that serializes an Array
to bytes of valid NDJSON
where every line is an element of the array.
Implementation
Advancing this iterator CPU-bounded
Implementations
sourceimpl<A, I> Serializer<A, I> where
A: AsRef<dyn Array + 'static>,
I: Iterator<Item = Result<A, ArrowError>>,
impl<A, I> Serializer<A, I> where
A: AsRef<dyn Array + 'static>,
I: Iterator<Item = Result<A, ArrowError>>,
sourcepub fn new(arrays: I, buffer: Vec<u8, Global>) -> Serializer<A, I>
pub fn new(arrays: I, buffer: Vec<u8, Global>) -> Serializer<A, I>
Creates a new Serializer
.
Trait Implementations
sourceimpl<A, I> Clone for Serializer<A, I> where
A: Clone + AsRef<dyn Array + 'static>,
I: Clone + Iterator<Item = Result<A, ArrowError>>,
impl<A, I> Clone for Serializer<A, I> where
A: Clone + AsRef<dyn Array + 'static>,
I: Clone + Iterator<Item = Result<A, ArrowError>>,
sourcefn clone(&self) -> Serializer<A, I>
fn clone(&self) -> Serializer<A, I>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<A, I> Debug for Serializer<A, I> where
A: Debug + AsRef<dyn Array + 'static>,
I: Debug + Iterator<Item = Result<A, ArrowError>>,
impl<A, I> Debug for Serializer<A, I> where
A: Debug + AsRef<dyn Array + 'static>,
I: Debug + Iterator<Item = Result<A, ArrowError>>,
sourceimpl<A, I> FallibleStreamingIterator for Serializer<A, I> where
A: AsRef<dyn Array + 'static>,
I: Iterator<Item = Result<A, ArrowError>>,
impl<A, I> FallibleStreamingIterator for Serializer<A, I> where
A: AsRef<dyn Array + 'static>,
I: Iterator<Item = Result<A, ArrowError>>,
type Error = ArrowError
type Error = ArrowError
The error type of iteration.
sourcefn advance(&mut self) -> Result<(), ArrowError>
fn advance(&mut self) -> Result<(), ArrowError>
Advances the iterator to the next position. Read more
sourcefn get(&self) -> Option<&<Serializer<A, I> as FallibleStreamingIterator>::Item>
fn get(&self) -> Option<&<Serializer<A, I> as FallibleStreamingIterator>::Item>
Returns the current element. Read more
sourcefn next(&mut self) -> Result<Option<&Self::Item>, Self::Error>
fn next(&mut self) -> Result<Option<&Self::Item>, Self::Error>
Advances the iterator, returning the next element. Read more
sourcefn size_hint(&self) -> (usize, Option<usize>)
fn size_hint(&self) -> (usize, Option<usize>)
Returns bounds on the number of remaining elements in the iterator.
sourcefn all<F>(&mut self, f: F) -> Result<bool, Self::Error> where
F: FnMut(&Self::Item) -> bool,
fn all<F>(&mut self, f: F) -> Result<bool, Self::Error> where
F: FnMut(&Self::Item) -> bool,
Determines if all elements of the iterator satisfy a predicate.
sourcefn any<F>(&mut self, f: F) -> Result<bool, Self::Error> where
F: FnMut(&Self::Item) -> bool,
fn any<F>(&mut self, f: F) -> Result<bool, Self::Error> where
F: FnMut(&Self::Item) -> bool,
Determines if any elements of the iterator satisfy a predicate.
sourcefn count(self) -> Result<usize, Self::Error>
fn count(self) -> Result<usize, Self::Error>
Returns the number of remaining elements in the iterator.
sourcefn filter<F>(self, f: F) -> Filter<Self, F> where
F: FnMut(&Self::Item) -> bool,
fn filter<F>(self, f: F) -> Filter<Self, F> where
F: FnMut(&Self::Item) -> bool,
Returns an iterator which filters elements by a predicate.
sourcefn find<F>(&mut self, f: F) -> Result<Option<&Self::Item>, Self::Error> where
F: FnMut(&Self::Item) -> bool,
fn find<F>(&mut self, f: F) -> Result<Option<&Self::Item>, Self::Error> where
F: FnMut(&Self::Item) -> bool,
Returns the first element of the iterator which satisfies a predicate.
sourcefn for_each<F>(self, f: F) -> Result<(), Self::Error> where
F: FnMut(&Self::Item),
fn for_each<F>(self, f: F) -> Result<(), Self::Error> where
F: FnMut(&Self::Item),
Calls a closure on each element of an iterator.
sourcefn fuse(self) -> Fuse<Self>
fn fuse(self) -> Fuse<Self>
Returns an iterator which is well-behaved at the beginning and end of iteration.
sourcefn map<F, B>(self, f: F) -> Map<Self, F, B> where
F: FnMut(&Self::Item) -> B,
fn map<F, B>(self, f: F) -> Map<Self, F, B> where
F: FnMut(&Self::Item) -> B,
Returns an iterator which applies a transform to elements.
sourcefn map_ref<F, B>(self, f: F) -> MapRef<Self, F> where
F: Fn(&Self::Item) -> &B,
B: ?Sized,
fn map_ref<F, B>(self, f: F) -> MapRef<Self, F> where
F: Fn(&Self::Item) -> &B,
B: ?Sized,
Returns an iterator which applies a transform to elements. Read more
sourcefn map_err<F, B>(self, f: F) -> MapErr<Self, F> where
F: Fn(Self::Error) -> B,
fn map_err<F, B>(self, f: F) -> MapErr<Self, F> where
F: Fn(Self::Error) -> B,
Returns an iterator that applies a transform to errors.
sourcefn nth(&mut self, n: usize) -> Result<Option<&Self::Item>, Self::Error>
fn nth(&mut self, n: usize) -> Result<Option<&Self::Item>, Self::Error>
Returns the nth
element of the iterator.
sourcefn position<F>(&mut self, f: F) -> Result<Option<usize>, Self::Error> where
F: FnMut(&Self::Item) -> bool,
fn position<F>(&mut self, f: F) -> Result<Option<usize>, Self::Error> where
F: FnMut(&Self::Item) -> bool,
Returns the position of the first element matching a predicate.
sourcefn skip_while<F>(self, f: F) -> SkipWhile<Self, F> where
F: FnMut(&Self::Item) -> bool,
fn skip_while<F>(self, f: F) -> SkipWhile<Self, F> where
F: FnMut(&Self::Item) -> bool,
Returns an iterator which skips the first sequence of elements matching a predicate.
Auto Trait Implementations
impl<A, I> RefUnwindSafe for Serializer<A, I> where
I: RefUnwindSafe,
impl<A, I> Send for Serializer<A, I> where
I: Send,
impl<A, I> Sync for Serializer<A, I> where
I: Sync,
impl<A, I> Unpin for Serializer<A, I> where
I: Unpin,
impl<A, I> UnwindSafe for Serializer<A, I> where
I: 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
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more