Enum rustc_ap_rustc_lexer::RawStrError [−][src]
pub enum RawStrError { InvalidStarter { bad_char: char, }, NoTerminator { expected: usize, found: usize, possible_terminator_offset: Option<usize>, }, TooManyDelimiters { found: usize, }, }
Expand description
Error produced validating a raw string. Represents cases like:
r##~"abcde"##
:InvalidStarter
r###"abcde"##
:NoTerminator { expected: 3, found: 2, possible_terminator_offset: Some(11)
- Too many
#
s (>65535):TooManyDelimiters
Variants
Expand description
Non #
characters exist between r
and "
eg. r#~"..
Show fields
Fields of InvalidStarter
bad_char: char
Expand description
The string was never terminated. possible_terminator_offset
is the number of characters after r
or br
where they
may have intended to terminate it.
Show fields
Expand description
More than 65535 #
s exist.
Show fields
Fields of TooManyDelimiters
found: usize
Trait Implementations
impl Clone for RawStrError
[src]
impl Clone for RawStrError
[src]fn clone(&self) -> RawStrError
[src]
fn clone(&self) -> RawStrError
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for RawStrError
[src]
impl Debug for RawStrError
[src]impl Ord for RawStrError
[src]
impl Ord for RawStrError
[src]impl PartialEq<RawStrError> for RawStrError
[src]
impl PartialEq<RawStrError> for RawStrError
[src]fn eq(&self, other: &RawStrError) -> bool
[src]
fn eq(&self, other: &RawStrError) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &RawStrError) -> bool
[src]
fn ne(&self, other: &RawStrError) -> bool
[src]This method tests for !=
.
impl PartialOrd<RawStrError> for RawStrError
[src]
impl PartialOrd<RawStrError> for RawStrError
[src]fn partial_cmp(&self, other: &RawStrError) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &RawStrError) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for RawStrError
[src]
impl Eq for RawStrError
[src]
impl StructuralEq for RawStrError
[src]
impl StructuralPartialEq for RawStrError
[src]
Auto Trait Implementations
impl RefUnwindSafe for RawStrError
impl Send for RawStrError
impl Sync for RawStrError
impl Unpin for RawStrError
impl UnwindSafe for RawStrError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more