#[non_exhaustive]pub struct LitByteStr {
pub span: Span,
pub source: StrSource,
}
Expand description
A string literal.
"Hello World"
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.span: Span
The span corresponding to the literal.
source: StrSource
If the string literal is escaped.
Trait Implementations§
Source§impl Clone for LitByteStr
impl Clone for LitByteStr
Source§fn clone(&self) -> LitByteStr
fn clone(&self) -> LitByteStr
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 LitByteStr
impl Debug for LitByteStr
Source§impl OptionSpanned for LitByteStr
impl OptionSpanned for LitByteStr
Source§fn option_span(&self) -> Option<Span>
fn option_span(&self) -> Option<Span>
Get the optional span of the type.
Source§impl Parse for LitByteStr
impl Parse for LitByteStr
Source§impl PartialEq for LitByteStr
impl PartialEq for LitByteStr
Source§impl ToTokens for LitByteStr
impl ToTokens for LitByteStr
Source§fn to_tokens(
&self,
_: &mut MacroContext<'_, '_, '_>,
stream: &mut TokenStream,
) -> Result<()>
fn to_tokens( &self, _: &mut MacroContext<'_, '_, '_>, stream: &mut TokenStream, ) -> Result<()>
Turn the current item into tokens.
Source§impl TryClone for LitByteStr
impl TryClone for LitByteStr
impl Copy for LitByteStr
impl Eq for LitByteStr
impl StructuralPartialEq for LitByteStr
Auto Trait Implementations§
impl Freeze for LitByteStr
impl RefUnwindSafe for LitByteStr
impl Send for LitByteStr
impl Sync for LitByteStr
impl Unpin for LitByteStr
impl UnwindSafe for LitByteStr
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.