pub enum InternalAttribute {
TaskPanicData,
RequestErrorData,
}Expand description
Defines keys for internal attributes used by the framework.
These keys correspond to specific, built-in functionalities.
Variants§
TaskPanicData
The attribute key for task panic handling with detailed error information.
RequestErrorData
The attribute key for request error handling.
Trait Implementations§
Source§impl Clone for InternalAttribute
impl Clone for InternalAttribute
Source§fn clone(&self) -> InternalAttribute
fn clone(&self) -> InternalAttribute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InternalAttribute
impl Debug for InternalAttribute
Source§impl<'de> Deserialize<'de> for InternalAttribute
impl<'de> Deserialize<'de> for InternalAttribute
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for InternalAttribute
impl Display for InternalAttribute
Source§impl From<InternalAttribute> for Attribute
Implementation of From trait for Attribute.
impl From<InternalAttribute> for Attribute
Implementation of From trait for Attribute.
Source§impl Hash for InternalAttribute
impl Hash for InternalAttribute
Source§impl PartialEq for InternalAttribute
impl PartialEq for InternalAttribute
Source§fn eq(&self, other: &InternalAttribute) -> bool
fn eq(&self, other: &InternalAttribute) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InternalAttribute
impl Serialize for InternalAttribute
impl Copy for InternalAttribute
impl Eq for InternalAttribute
impl StructuralPartialEq for InternalAttribute
Auto Trait Implementations§
impl Freeze for InternalAttribute
impl RefUnwindSafe for InternalAttribute
impl Send for InternalAttribute
impl Sync for InternalAttribute
impl Unpin for InternalAttribute
impl UnsafeUnpin for InternalAttribute
impl UnwindSafe for InternalAttribute
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