pub struct AutoPair {
pub open: char,
pub close: char,
}Expand description
A single auto-pair entry (opening + closing delimiter).
Fields§
§open: charOpening delimiter.
close: charClosing delimiter.
Implementations§
Trait Implementations§
impl Copy for AutoPair
impl Eq for AutoPair
impl StructuralPartialEq for AutoPair
Auto Trait Implementations§
impl Freeze for AutoPair
impl RefUnwindSafe for AutoPair
impl Send for AutoPair
impl Sync for AutoPair
impl Unpin for AutoPair
impl UnsafeUnpin for AutoPair
impl UnwindSafe for AutoPair
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