Struct ion_rs::BlockingRawReader
source · pub struct BlockingRawReader<R: BufferedRawReader, T: ToIonDataSource> { /* private fields */ }
Expand description
The BlockingRawReader wraps a non-blocking RawReader that implements the BufferedReader trait, providing a blocking RawReader.
Implementations§
source§impl<R: BufferedRawReader, T: ToIonDataSource> BlockingRawReader<R, T>
impl<R: BufferedRawReader, T: ToIonDataSource> BlockingRawReader<R, T>
source§impl<T: ToIonDataSource> BlockingRawReader<RawBinaryReader<Vec<u8>>, T>
impl<T: ToIonDataSource> BlockingRawReader<RawBinaryReader<Vec<u8>>, T>
pub fn raw_bytes(&self) -> Option<&[u8]>
pub fn field_id_length(&self) -> Option<usize>
pub fn field_id_offset(&self) -> Option<usize>
pub fn field_id_range(&self) -> Option<Range<usize>>
pub fn raw_field_id_bytes(&self) -> Option<&[u8]>
pub fn annotations_length(&self) -> Option<usize>
pub fn annotations_offset(&self) -> Option<usize>
pub fn annotations_range(&self) -> Option<Range<usize>>
pub fn raw_annotations_bytes(&self) -> Option<&[u8]>
pub fn header_length(&self) -> usize
pub fn header_offset(&self) -> usize
pub fn header_range(&self) -> Range<usize>
pub fn raw_header_bytes(&self) -> Option<&[u8]>
pub fn value_length(&self) -> usize
pub fn value_offset(&self) -> usize
pub fn value_range(&self) -> Range<usize>
pub fn raw_value_bytes(&self) -> Option<&[u8]>
Trait Implementations§
source§impl<R: BufferedRawReader, T: ToIonDataSource> IonReader for BlockingRawReader<R, T>
impl<R: BufferedRawReader, T: ToIonDataSource> IonReader for BlockingRawReader<R, T>
§type Item = <R as IonReader>::Item
type Item = <R as IonReader>::Item
The type returned by calls to Self::next, indicating the next entity in the stream.
Reader implementations representing different levels of abstraction will surface
different sets of encoding artifacts. While an application-level Reader would only surface
Ion values, a lower level Reader might surface symbol tables, Ion version markers, etc.
§type Symbol = <R as IonReader>::Symbol
type Symbol = <R as IonReader>::Symbol
The types used to represent field names, annotations, and symbol values at this Reader’s
level of abstraction.
source§fn ion_version(&self) -> (u8, u8)
fn ion_version(&self) -> (u8, u8)
Returns the (major, minor) version of the Ion stream being read. If ion_version is called
before an Ion Version Marker has been read, the version (1, 0) will be returned.
source§fn next(&mut self) -> IonResult<Self::Item>
fn next(&mut self) -> IonResult<Self::Item>
Attempts to advance the cursor to the next value in the stream at the current depth.
If no value is encountered, returns None; otherwise, returns the Ion type of the next value.
source§fn current(&self) -> Self::Item
fn current(&self) -> Self::Item
Returns a value describing the stream entity over which the Reader is currently positioned.
Depending on the Reader’s level of abstraction, that entity may or may not be an Ion value.
source§fn ion_type(&self) -> Option<IonType>
fn ion_type(&self) -> Option<IonType>
If the current item is a value, returns that value’s Ion type. Otherwise, returns None.
source§fn is_null(&self) -> bool
fn is_null(&self) -> bool
Returns
true
if the reader is currently positioned over an Ion null of any type.source§fn annotations<'a>(
&'a self
) -> Box<dyn Iterator<Item = IonResult<Self::Symbol>> + 'a>
fn annotations<'a>( &'a self ) -> Box<dyn Iterator<Item = IonResult<Self::Symbol>> + 'a>
Returns an iterator that will yield each of the annotations for the current value in order.
If there is no current value, returns an empty iterator.
source§fn has_annotations(&self) -> bool
fn has_annotations(&self) -> bool
If the reader is positioned over a value with one or more annotations, returns
true
.
Otherwise, returns false
.source§fn number_of_annotations(&self) -> usize
fn number_of_annotations(&self) -> usize
Returns the number of annotations on the current value. If there is no current value,
returns zero.
source§fn field_name(&self) -> IonResult<Self::Symbol>
fn field_name(&self) -> IonResult<Self::Symbol>
If the current item is a field within a struct, returns
Ok(_)
with a Self::Symbol
representing the field’s name; otherwise, returns an crate::IonError::IllegalOperation. Read moresource§fn read_null(&mut self) -> IonResult<IonType>
fn read_null(&mut self) -> IonResult<IonType>
Attempts to read the current item as an Ion null and return its Ion type. If the current
item is not a null or an IO error is encountered while reading, returns crate::IonError.
source§fn read_bool(&mut self) -> IonResult<bool>
fn read_bool(&mut self) -> IonResult<bool>
Attempts to read the current item as an Ion boolean and return it as a bool. If the current
item is not a boolean or an IO error is encountered while reading, returns crate::IonError.
source§fn read_int(&mut self) -> IonResult<Int>
fn read_int(&mut self) -> IonResult<Int>
Attempts to read the current item as an Ion integer and return it as an
Int
. If the
current item is not an integer or an IO error is encountered while reading, returns
crate::IonError.source§fn read_i64(&mut self) -> IonResult<i64>
fn read_i64(&mut self) -> IonResult<i64>
Attempts to read the current item as an Ion integer and return it as an i64. If the current
item is not an integer, the integer is too large to be represented as an
i64
, or an IO
error is encountered while reading, returns crate::IonError.source§fn read_f32(&mut self) -> IonResult<f32>
fn read_f32(&mut self) -> IonResult<f32>
Attempts to read the current item as an Ion float and return it as an f32. If the current
item is not a float or an IO error is encountered while reading, returns crate::IonError.
source§fn read_f64(&mut self) -> IonResult<f64>
fn read_f64(&mut self) -> IonResult<f64>
Attempts to read the current item as an Ion float and return it as an f64. If the current
item is not a float or an IO error is encountered while reading, returns crate::IonError.
source§fn read_decimal(&mut self) -> IonResult<Decimal>
fn read_decimal(&mut self) -> IonResult<Decimal>
Attempts to read the current item as an Ion decimal and return it as a crate::Decimal. If the current
item is not a decimal or an IO error is encountered while reading, returns crate::IonError.
source§fn read_string(&mut self) -> IonResult<Str>
fn read_string(&mut self) -> IonResult<Str>
Attempts to read the current item as an Ion string and return it as a String. If the current
item is not a string or an IO error is encountered while reading, returns crate::IonError.
source§fn read_str(&mut self) -> IonResult<&str>
fn read_str(&mut self) -> IonResult<&str>
Attempts to read the current item as an Ion string and return it as a &str. If the
current item is not a string or an IO error is encountered while reading, returns
crate::IonError.
source§fn read_symbol(&mut self) -> IonResult<Self::Symbol>
fn read_symbol(&mut self) -> IonResult<Self::Symbol>
Attempts to read the current item as an Ion symbol and return it as a Self::Symbol. If the
current item is not a symbol or an IO error is encountered while reading, returns crate::IonError.
source§fn read_blob(&mut self) -> IonResult<Blob>
fn read_blob(&mut self) -> IonResult<Blob>
Attempts to read the current item as an Ion blob and return it as a
Vec<u8>
. If the
current item is not a blob or an IO error is encountered while reading, returns crate::IonError.source§fn read_clob(&mut self) -> IonResult<Clob>
fn read_clob(&mut self) -> IonResult<Clob>
Attempts to read the current item as an Ion clob and return it as a
Vec<u8>
. If the
current item is not a clob or an IO error is encountered while reading, returns crate::IonError.source§fn read_timestamp(&mut self) -> IonResult<Timestamp>
fn read_timestamp(&mut self) -> IonResult<Timestamp>
Attempts to read the current item as an Ion timestamp and return crate::Timestamp. If the current
item is not a timestamp or an IO error is encountered while reading, returns crate::IonError.
source§fn step_in(&mut self) -> IonResult<()>
fn step_in(&mut self) -> IonResult<()>
If the current value is a container (i.e. a struct, list, or s-expression), positions the
cursor at the beginning of that container’s sequence of child values. The application must
call Self::next() to advance to the first child value. If the current value is not a container,
returns crate::IonError.
source§fn step_out(&mut self) -> IonResult<()>
fn step_out(&mut self) -> IonResult<()>
Positions the cursor at the end of the container currently being traversed. Calling Self::next()
will position the cursor over the item that follows the container. If the cursor is not in
a container (i.e. it is already at the top level), returns crate::IonError.
source§fn parent_type(&self) -> Option<IonType>
fn parent_type(&self) -> Option<IonType>
If the reader is positioned at the top level, returns
None
. Otherwise, returns
Some(_)
with the parent container’s crate::IonType.Auto Trait Implementations§
impl<R, T> RefUnwindSafe for BlockingRawReader<R, T>where R: RefUnwindSafe, <T as ToIonDataSource>::DataSource: RefUnwindSafe,
impl<R, T> Send for BlockingRawReader<R, T>where R: Send, <T as ToIonDataSource>::DataSource: Send,
impl<R, T> Sync for BlockingRawReader<R, T>where R: Sync, <T as ToIonDataSource>::DataSource: Sync,
impl<R, T> Unpin for BlockingRawReader<R, T>where R: Unpin, <T as ToIonDataSource>::DataSource: Unpin,
impl<R, T> UnwindSafe for BlockingRawReader<R, T>where R: UnwindSafe, <T as ToIonDataSource>::DataSource: UnwindSafe,
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
source§impl<R> ElementReader for Rwhere
R: IonReader<Item = StreamItem, Symbol = Symbol> + ?Sized,
impl<R> ElementReader for Rwhere R: IonReader<Item = StreamItem, Symbol = Symbol> + ?Sized,
type ElementIterator<'a> = ElementIterator<'a, R> where R: 'a
source§fn read_next_element(&mut self) -> Result<Option<Element>, IonError>
fn read_next_element(&mut self) -> Result<Option<Element>, IonError>
Recursively materializes the next Ion value, returning it as an
Ok(Element)
.
If there is no more data left to be read, returns Ok(None)
.
If an error occurs while the data is being read, returns Err(IonError)
.source§fn elements(&mut self) -> ElementIterator<'_, R> ⓘ
fn elements(&mut self) -> ElementIterator<'_, R> ⓘ
Returns an iterator over the Elements in the data stream.
source§fn read_one_element(&mut self) -> IonResult<Element>
fn read_one_element(&mut self) -> IonResult<Element>
Like Self::read_next_element, this method reads the next Ion value in the input stream,
returning it as an
Ok(Element)
. However, it also requires that the stream contain exactly
one value. Read more