[−][src]Struct nanoserde::DeRonState
Fields
cur: chartok: DeRonTokstrbuf: Stringnumbuf: Stringidentbuf: Stringline: usizecol: usizeImplementations
impl DeRonState[src]
pub fn next(&mut self, i: &mut Chars)[src]
pub fn err_exp(&self, name: &str) -> DeRonErr[src]
pub fn err_nf(&self, name: &str) -> DeRonErr[src]
pub fn err_enum(&self, name: &str) -> DeRonErr[src]
pub fn err_token(&self, what: &str) -> DeRonErr[src]
pub fn err_range(&self, what: &str) -> DeRonErr[src]
pub fn err_type(&self, what: &str) -> DeRonErr[src]
pub fn err_parse(&self, what: &str) -> DeRonErr[src]
pub fn eat_comma_paren(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn eat_comma_block(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn eat_comma_curly(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn colon(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn ident(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn next_colon(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn next_ident(&mut self) -> Option<()>[src]
pub fn paren_open(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn paren_close(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn block_open(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn block_close(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn curly_open(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn curly_close(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
pub fn u64_range(&mut self, max: u64) -> Result<u64, DeRonErr>[src]
pub fn i64_range(&mut self, min: i64, max: i64) -> Result<i64, DeRonErr>[src]
pub fn as_f64(&mut self) -> Result<f64, DeRonErr>[src]
pub fn as_bool(&mut self) -> Result<bool, DeRonErr>[src]
pub fn as_string(&mut self) -> Result<String, DeRonErr>[src]
pub fn next_tok(&mut self, i: &mut Chars) -> Result<(), DeRonErr>[src]
Trait Implementations
impl Default for DeRonState[src]
fn default() -> DeRonState[src]
Auto Trait Implementations
impl RefUnwindSafe for DeRonState
impl Send for DeRonState
impl Sync for DeRonState
impl Unpin for DeRonState
impl UnwindSafe for DeRonState
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,