#[derive(AsyncDebug)]
{
// Attributes available to this derive:
#[async_debug]
}
Expand description
AsyncDebug
proc macro
This macro will use the #[async_debug()]
attribute on properties of the struct or enum.
Attribute arguments can include:
async_call = some_function - Call this async function to render the value
clone - Call .clone()
on the value (exclusive of copy)
copy - Dereference the value to take a copy (exclusive of clone)
ty = SomeType - Use this type as the type of thie property on the generated *AsyncDebug
struct/enum.