pub enum BytesSyntax {
R6RS,
R7RS,
Elisp,
}Expand description
How to print byte vectors.
Variants§
R6RS
Use R6RS byte vector syntax, e.g. #vu8(1 2 3).
R7RS
Use R7RS byte vector syntax, e.g. #u8(1 2 3).
Elisp
Use Emacs Lisp unibyte string syntax, e.g. "\001\002\003".
Trait Implementations§
Source§impl Clone for BytesSyntax
impl Clone for BytesSyntax
Source§fn clone(&self) -> BytesSyntax
fn clone(&self) -> BytesSyntax
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 BytesSyntax
impl Debug for BytesSyntax
impl Copy for BytesSyntax
Auto Trait Implementations§
impl Freeze for BytesSyntax
impl RefUnwindSafe for BytesSyntax
impl Send for BytesSyntax
impl Sync for BytesSyntax
impl Unpin for BytesSyntax
impl UnwindSafe for BytesSyntax
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