pub struct TagPair {
pub open: String,
pub close: String,
}Expand description
A matching pair of open/close thinking delimiters.
Fields§
§open: StringThe opening delimiter.
close: StringThe closing delimiter.
Trait Implementations§
impl Eq for TagPair
impl StructuralPartialEq for TagPair
Auto Trait Implementations§
impl Freeze for TagPair
impl RefUnwindSafe for TagPair
impl Send for TagPair
impl Sync for TagPair
impl Unpin for TagPair
impl UnsafeUnpin for TagPair
impl UnwindSafe for TagPair
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