[][src]Struct proffer::impl_gen::Impl

pub struct Impl { /* fields omitted */ }

Represents an impl block

Methods

impl Impl[src]

pub fn new<S: ToString>(obj_name: S) -> Self[src]

Create a new impl block

pub fn set_impl_trait(&mut self, impl_trait: Option<Trait>) -> &mut Self[src]

Set if this impl is implementing a Trait for an object.

pub fn add_function(&mut self, func: Function) -> &mut Self[src]

Add a function to this Impl block

pub fn add_generic(&mut self, generic: Generic) -> &mut Self[src]

Add a generic to this Impl block

pub fn add_associated_type(
    &mut self,
    associated_type: AssociatedTypeDefinition
) -> &mut Self
[src]

Add a associated type to this Impl block

Trait Implementations

impl SrcCode for Impl[src]

impl Clone for Impl[src]

impl Default for Impl[src]

impl Serialize for Impl[src]

Auto Trait Implementations

impl Send for Impl

impl Sync for Impl

impl Unpin for Impl

impl UnwindSafe for Impl

impl RefUnwindSafe for Impl

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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