pub struct UnclosedParenthesis {
pub opening: bool,
}Expand description
A parenthesis was not closed.
Fields§
§opening: boolWhether the parenthesis was an opening parenthesis (. Otherwise, the parenthesis was a
closing parenthesis ).
Trait Implementations§
Source§impl Clone for UnclosedParenthesis
impl Clone for UnclosedParenthesis
Source§fn clone(&self) -> UnclosedParenthesis
fn clone(&self) -> UnclosedParenthesis
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 UnclosedParenthesis
impl Debug for UnclosedParenthesis
Source§impl ErrorKind for UnclosedParenthesis
impl ErrorKind for UnclosedParenthesis
Source§impl PartialEq for UnclosedParenthesis
impl PartialEq for UnclosedParenthesis
impl StructuralPartialEq for UnclosedParenthesis
Auto Trait Implementations§
impl Freeze for UnclosedParenthesis
impl RefUnwindSafe for UnclosedParenthesis
impl Send for UnclosedParenthesis
impl Sync for UnclosedParenthesis
impl Unpin for UnclosedParenthesis
impl UnwindSafe for UnclosedParenthesis
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