Struct ouroboros_examples::Chain[][src]

pub struct Chain { /* fields omitted */ }

Implementations

Constructs a new instance of this self-referential struct. (See also ChainBuilder::build()). Each argument is a field of the new struct. Fields that refer to other fields inside the struct are initialized using functions instead of directly passing their value. The arguments are as follows:

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

Constructs a new instance of this self-referential struct. (See also ChainAsyncBuilder::build()). Each argument is a field of the new struct. Fields that refer to other fields inside the struct are initialized using functions instead of directly passing their value. The arguments are as follows:

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

(See also ChainTryBuilder::try_build().) Like new, but builders for self-referencing fields can return results. If any of them fail, Err is returned. If all of them succeed, Ok is returned. The arguments are as follows:

ArgumentSuggested 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_>

(See also ChainTryBuilder::try_build_or_recover().) Like try_new, but all head fields are returned in the case of an error. The arguments are as follows:

ArgumentSuggested 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_>

(See also ChainAsyncTryBuilder::try_build().) Like new, but builders for self-referencing fields can return results. If any of them fail, Err is returned. If all of them succeed, Ok is returned. The arguments are as follows:

ArgumentSuggested 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_>

(See also ChainAsyncTryBuilder::try_build_or_recover().) Like try_new, but all head fields are returned in the case of an error. The arguments are as follows:

ArgumentSuggested 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_>

Provides limited immutable access to a. This method was generated because the contents of a are immutably borrowed by other fields.

Provides limited immutable access to a. This method was generated because the contents of a are immutably borrowed by other fields.

Provides limited immutable access to b. This method was generated because the contents of b are immutably borrowed by other fields.

Provides limited immutable access to b. This method was generated because the contents of b are immutably borrowed by other fields.

Provides an immutable reference to c. This method was generated because c is a tail field.

Provides an immutable reference to c. This method was generated because c is a tail field.

Provides a mutable reference to c. This method was generated because c is a tail field. No borrow_c_mut function was generated because Rust’s borrow checker is currently unable to guarantee that such a method would be used safely.

This method provides immutable references to all tail and immutably borrowed fields.

This method provides mutable references to all tail fields.

This function drops all internally referencing fields and returns only the head fields of this struct.

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.