Struct ron::parse::Bytes

source ·
pub struct Bytes<'a> {
    pub exts: Extensions,
    bytes: &'a [u8],
    cursor: Position,
}

Fields§

§exts: Extensions

Bits set according to the Extensions enum.

§bytes: &'a [u8]§cursor: Position

Implementations§

source§

impl<'a> Bytes<'a>

source

pub fn new(bytes: &'a [u8]) -> SpannedResult<Self>

source

pub fn span_error(&self, code: Error) -> SpannedError

source

pub fn advance(&mut self, bytes: usize) -> Result<()>

source

pub fn advance_single(&mut self) -> Result<()>

source

fn any_integer<T: Num>(&mut self, sign: i8) -> Result<T>

source

pub fn any_num(&mut self) -> Result<AnyNum>

source

pub fn bool(&mut self) -> Result<bool>

source

pub fn bytes(&self) -> &[u8]

source

pub fn char(&mut self) -> Result<char>

source

pub fn comma(&mut self) -> Result<bool>

source

pub fn check_ident(&mut self, ident: &str) -> bool

Only returns true if the char after ident cannot belong to an identifier.

source

fn check_ident_other_char(&self, index: usize) -> bool

source

pub fn check_tuple_struct(self) -> Result<bool>

Should only be used on a working copy

source

pub fn consume_ident(&mut self, ident: &str) -> bool

Only returns true if the char after ident cannot belong to an identifier.

source

pub fn consume_struct_name(&mut self, ident: &'static str) -> Result<bool>

source

pub fn consume(&mut self, s: &str) -> bool

source

fn consume_all(&mut self, all: &[&str]) -> Result<bool>

source

pub fn eat_byte(&mut self) -> Result<u8>

source

pub fn expect_byte(&mut self, byte: u8, error: Error) -> Result<()>

source

fn extensions(&mut self) -> Result<Extensions>

Returns the extensions bit mask.

source

pub fn float<T>(&mut self) -> Result<T>
where T: FromStr,

source

pub fn identifier(&mut self) -> Result<&'a [u8]>

source

pub fn next_bytes_contained_in(&self, allowed: fn(_: u8) -> bool) -> usize

source

pub fn next_bytes_is_float(&self) -> bool

source

pub fn skip_ws(&mut self) -> Result<()>

source

pub fn peek(&self) -> Option<u8>

source

pub fn peek_or_eof(&self) -> Result<u8>

source

pub fn signed_integer<T>(&mut self) -> Result<T>
where T: Num,

source

pub fn string(&mut self) -> Result<ParsedStr<'a>>

source

fn escaped_string(&mut self) -> Result<ParsedStr<'a>>

source

fn raw_string(&mut self) -> Result<ParsedStr<'a>>

source

fn test_for(&self, s: &str) -> bool

source

pub fn unsigned_integer<T: Num>(&mut self) -> Result<T>

source

fn decode_ascii_escape(&mut self) -> Result<u8>

source

fn decode_hex(&self, c: u8) -> Result<u8>

source

fn parse_escape(&mut self) -> Result<char>

source

fn skip_comment(&mut self) -> Result<bool>

Trait Implementations§

source§

impl<'a> Clone for Bytes<'a>

source§

fn clone(&self) -> Bytes<'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 Bytes<'a>

source§

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

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

impl<'a> Copy for Bytes<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Bytes<'a>

§

impl<'a> RefUnwindSafe for Bytes<'a>

§

impl<'a> Send for Bytes<'a>

§

impl<'a> Sync for Bytes<'a>

§

impl<'a> Unpin for Bytes<'a>

§

impl<'a> UnwindSafe for Bytes<'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.