[][src]Struct scones_examples::TupleStructBuilder

pub struct TupleStructBuilder<Field0Status__> { /* fields omitted */ }

A builder which creates an instance of TupleStruct.

Use TupleStructBuilder::new() to start the builder. Calling build() consumes the builder, returning the completed item. Before calling build(), you can modify values the builder will use by calling any of the other functions. For this builder, you must call all of the following functions at least once before calling build(), or you will receive a compilation error:

  • field_0(value: i32)

Here is a minimal example:

let instance = TupleStructBuilder::new()
    .field_0(value).build();

Implementations

impl TupleStructBuilder<Missing>[src]

pub fn new() -> Self[src]

impl<Field0Status__> TupleStructBuilder<Field0Status__>[src]

pub fn field_1(self, value: String) -> Self[src]

pub fn field_0(self, value: i32) -> TupleStructBuilder<Present>[src]

impl TupleStructBuilder<Present>[src]

pub fn build(self) -> TupleStruct[src]

Auto Trait Implementations

impl<Field0Status__> RefUnwindSafe for TupleStructBuilder<Field0Status__> where
    Field0Status__: RefUnwindSafe

impl<Field0Status__> Send for TupleStructBuilder<Field0Status__> where
    Field0Status__: Send

impl<Field0Status__> Sync for TupleStructBuilder<Field0Status__> where
    Field0Status__: Sync

impl<Field0Status__> Unpin for TupleStructBuilder<Field0Status__> where
    Field0Status__: Unpin

impl<Field0Status__> UnwindSafe for TupleStructBuilder<Field0Status__> where
    Field0Status__: UnwindSafe

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, 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.