[−][src]Struct serde_lexpr::parse::IoRead
S-expression input source that reads from a std::io input stream.
Methods
impl<R> IoRead<R> where
R: Read,
[src]
R: Read,
pub fn new(reader: R) -> IoRead<R>
[src]
Create a S-expression input source to read from a std::io input stream.
Trait Implementations
impl<'de, R> Read<'de> for IoRead<R> where
R: Read,
[src]
R: Read,
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<'de, 's, str>, Error>
[src]
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<Reference<'de, 's, str>, Error>
fn parse_elisp_str(
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<ElispStr<Reference<'de, 's, [u8]>, Reference<'de, 's, str>>, Error>
[src]
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<ElispStr<Reference<'de, 's, [u8]>, Reference<'de, 's, str>>, Error>
fn parse_symbol(
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<Reference<'de, 's, str>, Error>
[src]
&'s mut self,
scratch: &'s mut Vec<u8>
) -> Result<Reference<'de, 's, str>, Error>
fn parse_elisp_char(&mut self, scratch: &mut Vec<u8>) -> Result<char, Error>
[src]
Auto Trait Implementations
impl<R> RefUnwindSafe for IoRead<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
impl<R> Send for IoRead<R> where
R: Send,
R: Send,
impl<R> Sync for IoRead<R> where
R: Sync,
R: Sync,
impl<R> Unpin for IoRead<R> where
R: Unpin,
R: Unpin,
impl<R> UnwindSafe for IoRead<R> where
R: UnwindSafe,
R: UnwindSafe,
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>,