pub struct Toml<const PRETTY: bool = true>;Available on crate feature
toml-serde only.Expand description
A FileFormat corresponding to the TOML data format.
Implemented using the toml crate, only compatible with serde types.
This type provides an optional constant generic parameter for configuring pretty-print.
Trait Implementations§
Source§impl<T, const PRETTY: bool> FileFormat<T> for Toml<PRETTY>where
T: Serialize + DeserializeOwned,
Since the toml crate exposes no writer-based operations, all operations within this implementation are buffered.
impl<T, const PRETTY: bool> FileFormat<T> for Toml<PRETTY>where
T: Serialize + DeserializeOwned,
Since the toml crate exposes no writer-based operations, all operations within this implementation are buffered.
Source§type FormatError = TomlError
type FormatError = TomlError
The type of error to return from
to_writer and from_reader.Source§fn from_reader<R: Read>(&self, reader: R) -> Result<T, Self::FormatError>
fn from_reader<R: Read>(&self, reader: R) -> Result<T, Self::FormatError>
Deserialize a value from a
Read stream. Read moreSource§fn from_reader_buffered<R: Read>(
&self,
reader: R,
) -> Result<T, Self::FormatError>
fn from_reader_buffered<R: Read>( &self, reader: R, ) -> Result<T, Self::FormatError>
Identical to
FileFormat::from_reader, however the provided reader is buffered with BufReader. Read moreSource§fn to_writer<W: Write>(
&self,
writer: W,
value: &T,
) -> Result<(), Self::FormatError>
fn to_writer<W: Write>( &self, writer: W, value: &T, ) -> Result<(), Self::FormatError>
Serialize a value into a
Write stream. Read moreSource§fn to_writer_buffered<W: Write>(
&self,
writer: W,
value: &T,
) -> Result<(), Self::FormatError>
fn to_writer_buffered<W: Write>( &self, writer: W, value: &T, ) -> Result<(), Self::FormatError>
Identical to
FileFormat::to_writer, however the provided writer is buffered with BufWriter. Read moreSource§fn to_buffer(&self, value: &T) -> Result<Vec<u8>, Self::FormatError>
fn to_buffer(&self, value: &T) -> Result<Vec<u8>, Self::FormatError>
Serialize a value into a byte vec.
Source§fn from_buffer(&self, buf: &[u8]) -> Result<T, Self::FormatError>
fn from_buffer(&self, buf: &[u8]) -> Result<T, Self::FormatError>
Deserialize a value from a byte vec.
impl<const PRETTY: bool> Copy for Toml<PRETTY>
impl<const PRETTY: bool> Eq for Toml<PRETTY>
impl<const PRETTY: bool> StructuralPartialEq for Toml<PRETTY>
Auto Trait Implementations§
impl<const PRETTY: bool> Freeze for Toml<PRETTY>
impl<const PRETTY: bool> RefUnwindSafe for Toml<PRETTY>
impl<const PRETTY: bool> Send for Toml<PRETTY>
impl<const PRETTY: bool> Sync for Toml<PRETTY>
impl<const PRETTY: bool> Unpin for Toml<PRETTY>
impl<const PRETTY: bool> UnwindSafe for Toml<PRETTY>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.