Struct ouroboros_examples::ouroboros_impl_chain::ChainTryBuilder[][src]

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

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: i32b_builder: BBuilder_c_builder: CBuilder_

Implementations

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

Calls Chain::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

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.