pub enum ExprFormat {
SExpr,
Binary,
}Expand description
Serialization format selector.
Variants§
SExpr
S-expression text format: (And (Not (Var "x")) (Pred "p" (Var "y")))
Binary
Compact binary format with magic + version header
Trait Implementations§
Source§impl Clone for ExprFormat
impl Clone for ExprFormat
Source§fn clone(&self) -> ExprFormat
fn clone(&self) -> ExprFormat
Returns a duplicate 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 ExprFormat
impl Debug for ExprFormat
Source§impl PartialEq for ExprFormat
impl PartialEq for ExprFormat
impl StructuralPartialEq for ExprFormat
Auto Trait Implementations§
impl Freeze for ExprFormat
impl RefUnwindSafe for ExprFormat
impl Send for ExprFormat
impl Sync for ExprFormat
impl Unpin for ExprFormat
impl UnsafeUnpin for ExprFormat
impl UnwindSafe for ExprFormat
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