pub enum SerializationType {
Bincode,
Postcard,
Json,
}
Expand description
Serialization types supported for data parsing
Variants§
Trait Implementations§
Source§impl Clone for SerializationType
impl Clone for SerializationType
Source§fn clone(&self) -> SerializationType
fn clone(&self) -> SerializationType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SerializationType
impl Debug for SerializationType
Source§impl Display for SerializationType
impl Display for SerializationType
Source§impl IntoEnumIterator for SerializationType
impl IntoEnumIterator for SerializationType
type Iterator = SerializationTypeIter
fn iter() -> SerializationTypeIter ⓘ
Auto Trait Implementations§
impl Freeze for SerializationType
impl RefUnwindSafe for SerializationType
impl Send for SerializationType
impl Sync for SerializationType
impl Unpin for SerializationType
impl UnwindSafe for SerializationType
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