Error

Enum Error 

Source
pub enum Error {
Show 21 variants Parse(Error), NamesDontMatch(String, String), MultipleSingularValues(String), MultipleLiteralValues(String), UnsupportedLiteral(String), SingularAttrRequired(String), ParametrizedAttrRequired(String), AttributeUnknownArgument { attr: String, arg: String, }, ArgTypeProhibited { attr: String, arg: String, }, ArgNumberExceedsMax { attr: String, type_name: String, no: usize, max_no: u8, }, ArgMustNotHaveValue { attr: String, arg: String, }, ArgRequired { attr: String, arg: String, }, ArgNameMustBeIdent, ArgNameMustBeUnique { attr: String, arg: String, }, ArgValueRequired { attr: String, arg: String, }, ArgValueTypeMismatch { attr: String, arg: String, }, ArgValueMustBeLiteral, ArgValueMustBeType, ArgValueMustBeExpr, ParametrizedAttrHasNoValue(String), NestedListsNotSupported(String),
}
Expand description

Errors representing inconsistency in proc macro attribute structure

Variants§

§

Parse(Error)

Parse error from a syn crate

§

NamesDontMatch(String, String)

Names of two merged attributes must match each other

§

MultipleSingularValues(String)

Singular argument (of form #[attr = ...]) has multiple occurrences each assigned value. This is meaningless.

§

MultipleLiteralValues(String)

Multiple literal non-string values are given for a parametrized attribute in form of #[attr(literal1, literal2)]. This is meaningless.

§

UnsupportedLiteral(String)

Attribute contains unsupported literal argument

§

SingularAttrRequired(String)

Attribute must be in a singular form (#[attr] or #[attr = ...])

§

ParametrizedAttrRequired(String)

Attribute must be in a parametrized form (#[attr(...)])

§

AttributeUnknownArgument

Attribute has an unknown argument

Fields

§attr: String

Attribute name

§arg: String

Argument name

§

ArgTypeProhibited

Attribute is not allowed to have argument of type arg

Fields

§attr: String

Attribute name

§arg: String

Argument name

§

ArgNumberExceedsMax

Number of arg arguments in attribute attr exceeds maximum

Fields

§attr: String

Attribute name

§type_name: String

Argument type name

§no: usize

Number of arguments

§max_no: u8

Maximum allowed number of arguments

§

ArgMustNotHaveValue

Attribute argument arg must not have a value

Fields

§attr: String

Attribute name

§arg: String

Argument name

§

ArgRequired

Attribute must has an arg argument

Fields

§attr: String

Attribute name

§arg: String

Argument name

§

ArgNameMustBeIdent

Attribute or attribute argument name (in form of #[attr(arg = ...)]) must be an identifier (like arg) and not a path (like std::io)

§

ArgNameMustBeUnique

The same argument name is used multiple times within parametrized attribute (like in #[attr(name1 = value1, name1 = value2)])

Fields

§attr: String

Attribute name

§arg: String

Argument name

§

ArgValueRequired

Attribute or attribute argument must has a value: #[attr(arg = value)]

Fields

§attr: String

Attribute name

§arg: String

Argument name

§

ArgValueTypeMismatch

Attribute value type mismatch

Fields

§attr: String

Attribute name

§arg: String

Argument name

§

ArgValueMustBeLiteral

Parametrized attribute argument must have a literal value (string, integer etc): #[attr(arg = "value")] or #[arg = 4]

§

ArgValueMustBeType

Parametrized attribute argument must be a valid type name: #[attr(arg = u8)] or #[arg = String]

§

ArgValueMustBeExpr

Parametrized attribute argument must be a valid rust expression: #[attr(arg = 2 + 2)] or #[arg = { u16::MAX as usize }]

§

ParametrizedAttrHasNoValue(String)

Parametrized attribute (in form of #[attr(...)]) does not have a single value

§

NestedListsNotSupported(String)

👎Deprecated since 1.1.0: This error variant is not used anymore after the introduction of custom attribute parser

Lists nested within attribute arguments, like #[attr(arg(...))] are not supported

Trait Implementations§

Source§

impl Clone for Error

Source§

fn clone(&self) -> Error

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Error

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for Error

Source§

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

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl From<Error> for Error

Source§

fn from(err: Error) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for Error

Source§

fn from(err: Error) -> Self

Converts to this type from the input type.
Source§

impl From<Infallible> for Error

Source§

fn from(_: Infallible) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl Freeze for Error

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 64 bytes

Size for each variant:

  • Parse: 32 bytes
  • NamesDontMatch: 56 bytes
  • MultipleSingularValues: 32 bytes
  • MultipleLiteralValues: 32 bytes
  • UnsupportedLiteral: 32 bytes
  • SingularAttrRequired: 32 bytes
  • ParametrizedAttrRequired: 32 bytes
  • AttributeUnknownArgument: 56 bytes
  • ArgTypeProhibited: 56 bytes
  • ArgNumberExceedsMax: 64 bytes
  • ArgMustNotHaveValue: 56 bytes
  • ArgRequired: 56 bytes
  • ArgNameMustBeIdent: 0 bytes
  • ArgNameMustBeUnique: 56 bytes
  • ArgValueRequired: 56 bytes
  • ArgValueTypeMismatch: 56 bytes
  • ArgValueMustBeLiteral: 0 bytes
  • ArgValueMustBeType: 0 bytes
  • ArgValueMustBeExpr: 0 bytes
  • ParametrizedAttrHasNoValue: 32 bytes
  • NestedListsNotSupported: 32 bytes