[][src]Struct codegen::Function

pub struct Function { /* fields omitted */ }

Defines a function.

Implementations

impl Function[src]

pub fn new(name: &str) -> Self[src]

Return a new function definition.

pub fn doc(&mut self, docs: &str) -> &mut Self[src]

Set the function documentation.

pub fn allow(&mut self, allow: &str) -> &mut Self[src]

Specify lint attribute to supress a warning or error.

pub fn vis(&mut self, vis: &str) -> &mut Self[src]

Set the function visibility.

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

Add a generic to the function.

pub fn arg_self(&mut self) -> &mut Self[src]

Add self as a function argument.

pub fn arg_ref_self(&mut self) -> &mut Self[src]

Add &self as a function argument.

pub fn arg_mut_self(&mut self) -> &mut Self[src]

Add &mut self as a function argument.

pub fn arg<T>(&mut self, name: &str, ty: T) -> &mut Self where
    T: Into<Type>, 
[src]

Add a function argument.

pub fn ret<T>(&mut self, ty: T) -> &mut Self where
    T: Into<Type>, 
[src]

Set the function return type.

pub fn bound<T>(&mut self, name: &str, ty: T) -> &mut Self where
    T: Into<Type>, 
[src]

Add a where bound to the function.

pub fn line<T>(&mut self, line: T) -> &mut Self where
    T: ToString
[src]

Push a line to the function implementation.

pub fn push_block(&mut self, block: Block) -> &mut Self[src]

Push a block to the function implementation

pub fn fmt(&self, is_trait: bool, fmt: &mut Formatter) -> Result[src]

Formats the function using the given formatter.

Trait Implementations

impl Clone for Function[src]

impl Debug for Function[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.