pub struct StringSerializer<StringType>{
pub extension: &'static str,
/* private fields */
}Expand description
A serializer that encodes and decodes values of any type implementing
FromStr and ToString into utf-8 encoded text files.
Fields§
§extension: &'static strImplementations§
Source§impl<StringType> StringSerializer<StringType>
impl<StringType> StringSerializer<StringType>
Trait Implementations§
Auto Trait Implementations§
impl<StringType> Freeze for StringSerializer<StringType>
impl<StringType> RefUnwindSafe for StringSerializer<StringType>where
StringType: RefUnwindSafe,
impl<StringType> Send for StringSerializer<StringType>where
StringType: Send,
impl<StringType> Sync for StringSerializer<StringType>where
StringType: Sync,
impl<StringType> Unpin for StringSerializer<StringType>where
StringType: Unpin,
impl<StringType> UnwindSafe for StringSerializer<StringType>where
StringType: UnwindSafe,
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