[−][src]Struct darling_core::error::Error
An error encountered during attribute parsing.
Given that most errors darling encounters represent code bugs in dependent crates, the internal structure of the error is deliberately opaque.
Methods
impl Error
[src]
Error creation functions
pub fn custom<T: Display>(msg: T) -> Self
[src]
Creates a new error with a custom message.
pub fn duplicate_field(name: &str) -> Self
[src]
Creates a new error for a field that appears twice in the input.
pub fn duplicate_field_path(path: &Path) -> Self
[src]
Creates a new error for a field that appears twice in the input. Helper to avoid repeating the syn::Path to String conversion.
pub fn missing_field(name: &str) -> Self
[src]
Creates a new error for a non-optional field that does not appear in the input.
pub fn unknown_field(name: &str) -> Self
[src]
Creates a new error for a field name that appears in the input but does not correspond to a known field.
pub fn unknown_field_path(path: &Path) -> Self
[src]
Creates a new error for a field name that appears in the input but does not correspond to a known field. Helper to avoid repeating the syn::Path to String conversion.
pub fn unknown_field_with_alts<'a, T, I>(field: &str, alternates: I) -> Self where
T: AsRef<str> + 'a,
I: IntoIterator<Item = &'a T>,
[src]
T: AsRef<str> + 'a,
I: IntoIterator<Item = &'a T>,
Creates a new error for a field name that appears in the input but does not correspond to a known attribute. The second argument is the list of known attributes; if a similar name is found that will be shown in the emitted error message.
pub fn unsupported_shape(shape: &str) -> Self
[src]
Creates a new error for a struct or variant that does not adhere to the supported shape.
pub fn unsupported_format(format: &str) -> Self
[src]
pub fn unexpected_type(ty: &str) -> Self
[src]
Creates a new error for a field which has an unexpected literal type.
pub fn unexpected_lit_type(lit: &Lit) -> Self
[src]
Creates a new error for a field which has an unexpected literal type. This will automatically
extract the literal type name from the passed-in Lit
and set the span to encompass only the
literal value.
Usage
This is most frequently used in overrides of the FromMeta::from_value
method.
use darling::{FromMeta, Error, Result}; use syn::{Lit, LitStr}; pub struct Foo(String); impl FromMeta for Foo { fn from_value(value: &Lit) -> Result<Self> { if let Lit::Str(ref lit_str) = *value { Ok(Foo(lit_str.value())) } else { Err(Error::unexpected_lit_type(value)) } } }
pub fn unknown_value(value: &str) -> Self
[src]
Creates a new error for a value which doesn't match a set of expected literals.
pub fn too_few_items(min: usize) -> Self
[src]
Creates a new error for a list which did not get enough items to proceed.
pub fn too_many_items(max: usize) -> Self
[src]
Creates a new error when a list got more items than it supports. The max
argument
is the largest number of items the receiver could accept.
pub fn multiple(errors: Vec<Error>) -> Self
[src]
Bundle a set of multiple errors into a single Error
instance.
Panics
This function will panic if errors.is_empty() == true
.
impl Error
[src]
Error instance methods
pub fn has_span(&self) -> bool
[src]
Check if this error is associated with a span in the token stream.
pub fn with_span<T: Spanned>(self, node: &T) -> Self
[src]
Tie a span to the error if none is already present. This is used in darling::FromMeta
and other traits to attach errors to the most specific possible location in the input
source code.
All darling
-built impls, either from the crate or from the proc macro, will call this
when appropriate during parsing, so it should not be necessary to call this unless you have
overridden:
FromMeta::from_meta
FromMeta::from_nested_meta
FromMeta::from_value
pub fn flatten(self) -> Self
[src]
Recursively converts a tree of errors to a flattened list.
pub fn at<T: Display>(self, location: T) -> Self
[src]
Adds a location to the error, such as a field or variant. Locations must be added in reverse order of specificity.
pub fn at_path(self, path: &Path) -> Self
[src]
Adds a location to the error, such as a field or variant. Locations must be added in reverse order of specificity. This is a helper function to avoid repeating path to string logic.
pub fn len(&self) -> usize
[src]
Gets the number of individual errors in this error.
This function never returns 0
, as it's impossible to construct
a multi-error from an empty Vec
.
pub fn write_errors(self) -> TokenStream
[src]
Write this error and any children as compile errors into a TokenStream
to
be returned by the proc-macro.
The behavior of this method will be slightly different if the diagnostics
feature
is enabled: In that case, the diagnostics will be emitted immediately by this call,
and an empty TokenStream
will be returned.
Return these tokens unmodified to avoid disturbing the attached span information.
Usage
// in your proc-macro function let opts = match MyOptions::from_derive_input(&ast) { Ok(val) => val, Err(err) => { return err.write_errors(); } }
Trait Implementations
impl IntoIterator for Error
[src]
type Item = Error
The type of the elements being iterated over.
type IntoIter = IntoIter
Which kind of iterator are we turning this into?
ⓘImportant traits for IntoIterfn into_iter(self) -> IntoIter
[src]
impl Display for Error
[src]
impl Debug for Error
[src]
impl Error for Error
[src]
Auto Trait Implementations
impl !Send for Error
impl !Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
impl !RefUnwindSafe for Error
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<I> IntoIterator for I where
I: Iterator,
[src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,