darling_core::codegen::outer_from_impl

Trait OuterFromImpl

Source
pub trait OuterFromImpl<'a> {
    // Required methods
    fn trait_path(&self) -> Path;
    fn base(&'a self) -> &'a TraitImpl<'a>;

    // Provided methods
    fn trait_bound(&self) -> Path { ... }
    fn wrap<T: ToTokens>(&'a self, body: T, tokens: &mut TokenStream) { ... }
}
Expand description

Wrapper for “outer From” traits, such as FromDeriveInput, FromVariant, and FromField.

Required Methods§

Source

fn trait_path(&self) -> Path

Gets the path of the trait being implemented.

Source

fn base(&'a self) -> &'a TraitImpl<'a>

Provided Methods§

Source

fn trait_bound(&self) -> Path

Source

fn wrap<T: ToTokens>(&'a self, body: T, tokens: &mut TokenStream)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§