[][src]Struct ouroboros_examples::ChainHackTryBuilder

pub struct ChainHackTryBuilder<BBuilder_: for<'this> FnOnce(&'this i32) -> Result<Box<&'this i32>, Error_>, CBuilder_: for<'this> FnOnce(&'this &'this i32) -> Result<Box<&'this i32>, Error_>, Error_> {
    pub a: Box<i32>,
    pub b_builder: BBuilder_,
    pub c_builder: CBuilder_,
}

A more verbose but stable way to construct self-referencing structs. It is comparable to using StructName { field1: value1, field2: value2 } rather than StructName::new(value1, value2). This has the dual benefit of makin your code both easier to refactor and more readable. Call try_build() or try_build_or_recover() to construct the actual struct. The fields of this struct should be used as follows:

FieldSuggested Use
aDirectly pass in the value this field should contain
b_builderUse a function or closure: (a: &_) -> Result<b: _, Error_>
c_builderUse a function or closure: (b: &_) -> Result<c: _, Error_>

Fields

a: Box<i32>b_builder: BBuilder_c_builder: CBuilder_

Implementations

impl<BBuilder_: for<'this> FnOnce(&'this i32) -> Result<Box<&'this i32>, Error_>, CBuilder_: for<'this> FnOnce(&'this &'this i32) -> Result<Box<&'this i32>, Error_>, Error_> ChainHackTryBuilder<BBuilder_, CBuilder_, Error_>[src]

pub fn try_build(self) -> Result<ChainHack, Error_>[src]

Calls ChainHack::try_new() using the provided values. This is preferrable over calling try_new() directly for the reasons listed above.

pub fn try_build_or_recover(self) -> Result<ChainHack, (Error_, Heads)>[src]

Calls ChainHack::try_new_or_recover() using the provided values. This is preferrable over calling try_new_or_recover() directly for the reasons listed above.

Auto Trait Implementations

impl<BBuilder_, CBuilder_, Error_> RefUnwindSafe for ChainHackTryBuilder<BBuilder_, CBuilder_, Error_> where
    BBuilder_: RefUnwindSafe,
    CBuilder_: RefUnwindSafe

impl<BBuilder_, CBuilder_, Error_> Send for ChainHackTryBuilder<BBuilder_, CBuilder_, Error_> where
    BBuilder_: Send,
    CBuilder_: Send

impl<BBuilder_, CBuilder_, Error_> Sync for ChainHackTryBuilder<BBuilder_, CBuilder_, Error_> where
    BBuilder_: Sync,
    CBuilder_: Sync

impl<BBuilder_, CBuilder_, Error_> Unpin for ChainHackTryBuilder<BBuilder_, CBuilder_, Error_> where
    BBuilder_: Unpin,
    CBuilder_: Unpin

impl<BBuilder_, CBuilder_, Error_> UnwindSafe for ChainHackTryBuilder<BBuilder_, CBuilder_, Error_> where
    BBuilder_: UnwindSafe,
    CBuilder_: 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.