pub struct BraceStack {
pub braces: Vec<char>,
}Fields§
§braces: Vec<char>Implementations§
Trait Implementations§
Source§impl Clone for BraceStack
impl Clone for BraceStack
Source§fn clone(&self) -> BraceStack
fn clone(&self) -> BraceStack
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 BraceStack
impl Debug for BraceStack
Source§impl Default for BraceStack
impl Default for BraceStack
Source§fn default() -> BraceStack
fn default() -> BraceStack
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BraceStack
impl RefUnwindSafe for BraceStack
impl Send for BraceStack
impl Sync for BraceStack
impl Unpin for BraceStack
impl UnwindSafe for BraceStack
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