[][src]Struct kiwi_schema::ByteBuffer

pub struct ByteBuffer<'a> { /* fields omitted */ }

A Kiwi byte buffer meant for reading.

Example usage:

use std::borrow::Cow;
let mut bb = kiwi_schema::ByteBuffer::new(&[240, 159, 141, 149, 0, 133, 242, 210, 237]);
assert_eq!(bb.read_string(), Ok(Cow::Borrowed("🍕")));
assert_eq!(bb.read_var_float(), Ok(123.456));

Implementations

impl<'a> ByteBuffer<'a>[src]

pub fn new(data: &[u8]) -> ByteBuffer[src]

Create a new ByteBuffer that wraps the provided byte slice. The lifetime of the returned ByteBuffer must not outlive the lifetime of the byte slice.

pub fn data(&self) -> &'a [u8][src]

Retrieves the underlying byte slice.

pub fn index(&self) -> usize[src]

Retrieves the current index into the underlying byte slice. This starts off as 0 and ends up as self.data().len() when everything has been read.

pub fn read_bool(&mut self) -> Result<bool, ()>[src]

Try to read a boolean value starting at the current index.

pub fn read_byte(&mut self) -> Result<u8, ()>[src]

Try to read a byte starting at the current index.

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

Try to read a byte starting at the current index.

pub fn read_var_int(&mut self) -> Result<i32, ()>[src]

Try to read a variable-length signed 32-bit integer starting at the current index.

pub fn read_var_uint(&mut self) -> Result<u32, ()>[src]

Try to read a variable-length unsigned 32-bit integer starting at the current index.

pub fn read_var_float(&mut self) -> Result<f32, ()>[src]

Try to read a variable-length 32-bit floating-point number starting at the current index.

pub fn read_string(&mut self) -> Result<Cow<'a, str>, ()>[src]

Try to read a UTF-8 string starting at the current index. This string is returned as a slice so it just aliases the underlying memory.

Auto Trait Implementations

impl<'a> RefUnwindSafe for ByteBuffer<'a>

impl<'a> Send for ByteBuffer<'a>

impl<'a> Sync for ByteBuffer<'a>

impl<'a> Unpin for ByteBuffer<'a>

impl<'a> UnwindSafe for ByteBuffer<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.