[−][src]Struct serde_lexpr::parse::SliceRead
S-expression input source that reads from a slice of bytes.
Methods
impl<'a> SliceRead<'a>
[src]
pub fn new(slice: &'a [u8]) -> SliceRead<'a>
[src]
Create a S-expression input source to read from a slice of bytes.
Trait Implementations
impl<'a> Read<'a> for SliceRead<'a>
[src]
fn next(&mut self) -> Result<Option<u8>, Error>
[src]
fn peek(&mut self) -> Result<Option<u8>, Error>
[src]
fn discard(&mut self)
[src]
fn position(&self) -> Position
[src]
fn peek_position(&self) -> Position
[src]
fn byte_offset(&self) -> usize
[src]
fn parse_r6rs_str(
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<Reference<'a, 's, str>, Error>
[src]
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<Reference<'a, 's, str>, Error>
fn parse_elisp_str(
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<ElispStr<Reference<'a, 's, [u8]>, Reference<'a, 's, str>>, Error>
[src]
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<ElispStr<Reference<'a, 's, [u8]>, Reference<'a, 's, str>>, Error>
fn parse_symbol(
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<Reference<'a, 's, str>, Error>
[src]
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<Reference<'a, 's, str>, Error>
fn parse_elisp_char(&mut self, scratch: &mut Vec<u8>) -> Result<char, Error>
[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for SliceRead<'a>
impl<'a> Send for SliceRead<'a>
impl<'a> Sync for SliceRead<'a>
impl<'a> Unpin for SliceRead<'a>
impl<'a> UnwindSafe for SliceRead<'a>
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>,