pub struct ReservedNameError(/* private fields */);
Expand description
Error when a reserved name is used where it is not allowed
Implementations§
Source§impl ReservedNameError
impl ReservedNameError
Sourcepub fn name(&self) -> &InternalName
pub fn name(&self) -> &InternalName
The InternalName
which contained a reserved component
Trait Implementations§
Source§impl Clone for ReservedNameError
impl Clone for ReservedNameError
Source§fn clone(&self) -> ReservedNameError
fn clone(&self) -> ReservedNameError
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 ReservedNameError
impl Debug for ReservedNameError
Source§impl Diagnostic for ReservedNameError
impl Diagnostic for ReservedNameError
Source§fn code<'a>(&'a self) -> Option<Box<dyn Display + 'a>>
fn code<'a>(&'a self) -> Option<Box<dyn Display + 'a>>
Unique diagnostic code that can be used to look up more information
about this
Diagnostic
. Ideally also globally unique, and documented
in the toplevel crate’s documentation for easy searching. Rust path
format (foo::bar::baz
) is recommended, but more classic codes like
E0123
or enums will work just fine.Source§fn severity(&self) -> Option<Severity>
fn severity(&self) -> Option<Severity>
Diagnostic severity. This may be used by
ReportHandler
s to change the display format
of this diagnostic. Read moreSource§fn help<'a>(&'a self) -> Option<Box<dyn Display + 'a>>
fn help<'a>(&'a self) -> Option<Box<dyn Display + 'a>>
Additional help text related to this
Diagnostic
. Do you have any
advice for the poor soul who’s just run into this issue?Source§fn url<'a>(&'a self) -> Option<Box<dyn Display + 'a>>
fn url<'a>(&'a self) -> Option<Box<dyn Display + 'a>>
URL to visit for a more detailed explanation/help about this
Diagnostic
.Source§fn source_code(&self) -> Option<&dyn SourceCode>
fn source_code(&self) -> Option<&dyn SourceCode>
Source code to apply this
Diagnostic
’s Diagnostic::labels
to.Source§fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>>
fn labels(&self) -> Option<Box<dyn Iterator<Item = LabeledSpan> + '_>>
Labels to apply to this
Diagnostic
’s Diagnostic::source_code
Additional related
Diagnostic
s.Source§fn diagnostic_source(&self) -> Option<&dyn Diagnostic>
fn diagnostic_source(&self) -> Option<&dyn Diagnostic>
The cause of the error.
Source§impl Display for ReservedNameError
impl Display for ReservedNameError
Source§impl Error for ReservedNameError
impl Error for ReservedNameError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ReservedNameError> for JsonDeserializationError
impl From<ReservedNameError> for JsonDeserializationError
Source§fn from(source: ReservedNameError) -> Self
fn from(source: ReservedNameError) -> Self
Converts to this type from the input type.
Source§impl From<ReservedNameError> for ParseError
impl From<ReservedNameError> for ParseError
Source§fn from(value: ReservedNameError) -> Self
fn from(value: ReservedNameError) -> Self
Converts to this type from the input type.
Source§impl From<ReservedNameError> for ToASTErrorKind
impl From<ReservedNameError> for ToASTErrorKind
Source§fn from(source: ReservedNameError) -> Self
fn from(source: ReservedNameError) -> Self
Converts to this type from the input type.
Source§impl Hash for ReservedNameError
impl Hash for ReservedNameError
Source§impl PartialEq for ReservedNameError
impl PartialEq for ReservedNameError
impl Eq for ReservedNameError
impl StructuralPartialEq for ReservedNameError
Auto Trait Implementations§
impl Freeze for ReservedNameError
impl RefUnwindSafe for ReservedNameError
impl Send for ReservedNameError
impl Sync for ReservedNameError
impl Unpin for ReservedNameError
impl UnwindSafe for ReservedNameError
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more