pub enum CharSyntax {
R6RS,
Elisp,
}Expand description
Indicates the syntax for characters.
Variants§
R6RS
Syntax as specified in R6RS.
Note that there is no R7RS variant, because R6RS specifies a superset of R7RS syntax.
Elisp
Emacs Lisp syntax.
Trait Implementations§
Source§impl Clone for CharSyntax
impl Clone for CharSyntax
Source§fn clone(&self) -> CharSyntax
fn clone(&self) -> CharSyntax
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 CharSyntax
impl Debug for CharSyntax
Source§impl PartialEq for CharSyntax
impl PartialEq for CharSyntax
impl Copy for CharSyntax
impl StructuralPartialEq for CharSyntax
Auto Trait Implementations§
impl Freeze for CharSyntax
impl RefUnwindSafe for CharSyntax
impl Send for CharSyntax
impl Sync for CharSyntax
impl Unpin for CharSyntax
impl UnwindSafe for CharSyntax
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