pub struct UnicodeRange<'a> {
pub span: Span,
pub prefix: char,
pub start: u32,
pub start_raw: &'a str,
pub end: u32,
pub end_raw: Option<&'a str>,
}Fields§
§span: Span§prefix: char§start: u32§start_raw: &'a str§end: u32§end_raw: Option<&'a str>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for UnicodeRange<'a>
impl<'a> RefUnwindSafe for UnicodeRange<'a>
impl<'a> Send for UnicodeRange<'a>
impl<'a> Sync for UnicodeRange<'a>
impl<'a> Unpin for UnicodeRange<'a>
impl<'a> UnsafeUnpin for UnicodeRange<'a>
impl<'a> UnwindSafe for UnicodeRange<'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