pub struct StrLiteral(pub String);Expand description
A string literal.
Tuple Fields§
§0: StringTrait Implementations§
source§impl Clone for StrLiteral
impl Clone for StrLiteral
source§fn clone(&self) -> StrLiteral
fn clone(&self) -> StrLiteral
Returns a copy 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 StrLiteral
impl Debug for StrLiteral
source§impl Default for StrLiteral
impl Default for StrLiteral
source§fn default() -> StrLiteral
fn default() -> StrLiteral
Returns the “default value” for a type. Read more
source§impl Hash for StrLiteral
impl Hash for StrLiteral
source§impl Ord for StrLiteral
impl Ord for StrLiteral
source§fn cmp(&self, other: &StrLiteral) -> Ordering
fn cmp(&self, other: &StrLiteral) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for StrLiteral
impl PartialEq for StrLiteral
source§impl PartialOrd for StrLiteral
impl PartialOrd for StrLiteral
impl Eq for StrLiteral
impl StructuralPartialEq for StrLiteral
Auto Trait Implementations§
impl Freeze for StrLiteral
impl RefUnwindSafe for StrLiteral
impl Send for StrLiteral
impl Sync for StrLiteral
impl Unpin for StrLiteral
impl UnwindSafe for StrLiteral
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<S> Parse for Swhere
S: TokenParse,
impl<S> Parse for Swhere
S: TokenParse,
source§impl<T> TokenParse for Twhere
T: DirectTokenParse,
impl<T> TokenParse for Twhere
T: DirectTokenParse,
source§type Intermediate = T
type Intermediate = T
An intermediate to hold the match before it is converted to the actual component.
source§fn match_(
m_token: Option<&Token>,
span: Range<usize>,
) -> Result<<T as TokenParse>::Intermediate, ParseErr>
fn match_( m_token: Option<&Token>, span: Range<usize>, ) -> Result<<T as TokenParse>::Intermediate, ParseErr>
Tries to match the next token to the given component, if possible. Read more
source§fn convert(
imed: <T as TokenParse>::Intermediate,
_span: Range<usize>,
) -> Result<T, ParseErr>
fn convert( imed: <T as TokenParse>::Intermediate, _span: Range<usize>, ) -> Result<T, ParseErr>
Parses the intermediate into the given component, raising an error if conversion fails.