[][src]Struct derive_builder_core::DeprecationNotes

pub struct DeprecationNotes(_);

Deprecation notes we want to emit to the user, implementing quote::ToTokens.

Can be expanded at every place that accepts statements and item definitions (e.g. function bodys).

Examples

Will expand to something like the following (depending on settings):

        {
            #[deprecated(note = "Some Warning")]
            fn derive_builder_core_deprecation_note() { }
            derive_builder_core_deprecation_note();
        }

This will emit a deprecation warning in the downstream crate. Cool stuff. ^^

Proof of concept:

  • https://play.rust-lang.org/?gist=8394141c07d1f6d75d314818389eb4d8

Methods

impl DeprecationNotes[src]

pub fn push(&mut self, note: String)[src]

Appends a note to the collection.

pub fn extend(&mut self, other: &DeprecationNotes)[src]

Extend this collection with all values from another collection.

pub fn as_item(&self) -> DeprecationNotesAsItem[src]

Create a view of these deprecation notes that can annotate a struct.

Trait Implementations

impl Clone for DeprecationNotes[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for DeprecationNotes[src]

impl Debug for DeprecationNotes[src]

impl ToTokens for DeprecationNotes[src]

fn into_token_stream(self) -> TokenStream[src]

Convert self directly into a TokenStream object. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Spanned for T where
    T: ToTokens
[src]