Struct ttf_parser::parser::Stream

source ·
pub struct Stream<'a> { /* private fields */ }
Expand description

A streaming binary parser.

Implementations§

source§

impl<'a> Stream<'a>

source

pub fn new(data: &'a [u8]) -> Self

Creates a new Stream parser.

source

pub fn new_at(data: &'a [u8], offset: usize) -> Option<Self>

Creates a new Stream parser at offset.

Returns None when offset is out of bounds.

source

pub fn at_end(&self) -> bool

Checks that stream reached the end of the data.

source

pub fn jump_to_end(&mut self)

Jumps to the end of the stream.

Useful to indicate that we parsed all the data.

source

pub fn offset(&self) -> usize

Returns the current offset.

source

pub fn tail(&self) -> Option<&'a [u8]>

Returns the trailing data.

Returns None when Stream is reached the end.

source

pub fn skip<T: FromData>(&mut self)

Advances by FromData::SIZE.

Doesn’t check bounds.

source

pub fn advance(&mut self, len: usize)

Advances by the specified len.

Doesn’t check bounds.

source

pub fn advance_checked(&mut self, len: usize) -> Option<()>

Advances by the specified len and checks for bounds.

source

pub fn read<T: FromData>(&mut self) -> Option<T>

Parses the type from the steam.

Returns None when there is not enough data left in the stream or the type parsing failed.

source

pub fn read_at<T: FromData>(data: &[u8], offset: usize) -> Option<T>

Parses the type from the steam at offset.

source

pub fn read_bytes(&mut self, len: usize) -> Option<&'a [u8]>

Reads N bytes from the stream.

source

pub fn read_array16<T: FromData>( &mut self, count: u16 ) -> Option<LazyArray16<'a, T>>

Reads the next count types as a slice.

source

pub fn read_array32<T: FromData>( &mut self, count: u32 ) -> Option<LazyArray32<'a, T>>

Reads the next count types as a slice.

Trait Implementations§

source§

impl<'a> Clone for Stream<'a>

source§

fn clone(&self) -> Stream<'a>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a> Debug for Stream<'a>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> Default for Stream<'a>

source§

fn default() -> Stream<'a>

Returns the “default value” for a type. Read more
source§

impl<'a> Copy for Stream<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Stream<'a>

§

impl<'a> RefUnwindSafe for Stream<'a>

§

impl<'a> Send for Stream<'a>

§

impl<'a> Sync for Stream<'a>

§

impl<'a> Unpin for Stream<'a>

§

impl<'a> UnwindSafe for Stream<'a>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.