pub struct InnerSyntax<'a> {
pub block_start: &'a str,
pub block_end: &'a str,
pub expr_start: &'a str,
pub expr_end: &'a str,
pub comment_start: &'a str,
pub comment_end: &'a str,
}Fields§
§block_start: &'a str§block_end: &'a str§expr_start: &'a str§expr_end: &'a str§comment_start: &'a str§comment_end: &'a strTrait Implementations§
Source§impl<'a> Clone for InnerSyntax<'a>
impl<'a> Clone for InnerSyntax<'a>
Source§fn clone(&self) -> InnerSyntax<'a>
fn clone(&self) -> InnerSyntax<'a>
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 InnerSyntax<'_>
impl Debug for InnerSyntax<'_>
Source§impl Default for InnerSyntax<'static>
impl Default for InnerSyntax<'static>
Source§impl<'a> Hash for InnerSyntax<'a>
impl<'a> Hash for InnerSyntax<'a>
Source§impl<'a> PartialEq for InnerSyntax<'a>
impl<'a> PartialEq for InnerSyntax<'a>
impl<'a> Copy for InnerSyntax<'a>
impl<'a> StructuralPartialEq for InnerSyntax<'a>
Auto Trait Implementations§
impl<'a> Freeze for InnerSyntax<'a>
impl<'a> RefUnwindSafe for InnerSyntax<'a>
impl<'a> Send for InnerSyntax<'a>
impl<'a> Sync for InnerSyntax<'a>
impl<'a> Unpin for InnerSyntax<'a>
impl<'a> UnwindSafe for InnerSyntax<'a>
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