pub enum Brackets {
List,
Vector,
}Expand description
Defines the treatment of brackets.
Variants§
List
Brackets are synonymous with regular parentheses, and indicate a list, as in R6RS Scheme.
Vector
Brackets indicate a vector, like in Emacs Lisp.
Trait Implementations§
impl Copy for Brackets
impl StructuralPartialEq for Brackets
Auto Trait Implementations§
impl Freeze for Brackets
impl RefUnwindSafe for Brackets
impl Send for Brackets
impl Sync for Brackets
impl Unpin for Brackets
impl UnwindSafe for Brackets
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