pub struct Derived<'p, T> where
T: 'p, {
pub derive_input: &'p DeriveInput,
pub value: &'p T,
}Fields
derive_input: &'p DeriveInputvalue: &'p TImplementations
sourceimpl<'p, T> Derived<'p, T>
impl<'p, T> Derived<'p, T>
pub fn from(derive_input: &'p DeriveInput, value: &'p T) -> Derived<'p, T>
sourceimpl<'f> Derived<'f, Variant>
impl<'f> Derived<'f, Variant>
pub fn builder<F>(&self, f: F) -> TokenStream where
F: Fn(Field<'_>) -> TokenStream,
pub fn fields(self) -> Fields<'f>
Trait Implementations
sourceimpl<'p, T> ToTokens for Derived<'p, T> where
T: ToTokens,
impl<'p, T> ToTokens for Derived<'p, T> where
T: ToTokens,
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl<'p, T> Copy for Derived<'p, T>
Auto Trait Implementations
impl<'p, T> RefUnwindSafe for Derived<'p, T> where
T: RefUnwindSafe,
impl<'p, T> !Send for Derived<'p, T>
impl<'p, T> !Sync for Derived<'p, T>
impl<'p, T> Unpin for Derived<'p, T>
impl<'p, T> UnwindSafe for Derived<'p, T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Spanned for T where
T: ToTokens,
impl<T> Spanned for T where
T: ToTokens,
sourcefn span(&self) -> Span
fn span(&self) -> Span
Returns a Span covering the complete contents of this syntax tree
node, or Span::call_site() if this node is empty. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more