[][src]Struct codegen::Struct

pub struct Struct { /* fields omitted */ }

Defines a struct.

Methods

impl Struct[src]

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

Return a structure definition with the provided name

pub fn ty(&self) -> &Type[src]

Returns a reference to the type

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

Set the structure visibility.

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

Add a generic to the struct.

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

Add a where bound to the struct.

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

Set the structure documentation.

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

Add a new type that the struct should derive.

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

Specify lint attribute to supress a warning or error.

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

Specify representation.

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

Add a named field to the struct.

A struct can either set named fields with this function or tuple fields with tuple_field, but not both.

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

Add a tuple field to the struct.

A struct can either set tuple fields with this function or named fields with field, but not both.

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

Formats the struct using the given formatter.

Trait Implementations

impl Clone for Struct[src]

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

Performs copy-assignment from source. Read more

impl Debug for Struct[src]

Auto Trait Implementations

impl Send for Struct

impl Sync for Struct

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.