Struct ouroboros_examples::Visibility[][src]

pub struct Visibility { /* fields omitted */ }

Implementations

Constructs a new instance of this self-referential struct. (See also VisibilityBuilder::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
private_fieldDirectly pass in the value this field should contain
public_field_builderUse a function or closure: (private_field: &_) -> public_field: _
pub_crate_field_builderUse a function or closure: (private_field: &_) -> pub_crate_field: _

Constructs a new instance of this self-referential struct. (See also VisibilityAsyncBuilder::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
private_fieldDirectly pass in the value this field should contain
public_field_builderUse a function or closure: (private_field: &_) -> public_field: _
pub_crate_field_builderUse a function or closure: (private_field: &_) -> pub_crate_field: _

(See also VisibilityTryBuilder::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
private_fieldDirectly pass in the value this field should contain
public_field_builderUse a function or closure: (private_field: &_) -> Result<public_field: _, Error_>
pub_crate_field_builderUse a function or closure: (private_field: &_) -> Result<pub_crate_field: _, Error_>

(See also VisibilityTryBuilder::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
private_fieldDirectly pass in the value this field should contain
public_field_builderUse a function or closure: (private_field: &_) -> Result<public_field: _, Error_>
pub_crate_field_builderUse a function or closure: (private_field: &_) -> Result<pub_crate_field: _, Error_>

(See also VisibilityAsyncTryBuilder::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
private_fieldDirectly pass in the value this field should contain
public_field_builderUse a function or closure: (private_field: &_) -> Result<public_field: _, Error_>
pub_crate_field_builderUse a function or closure: (private_field: &_) -> Result<pub_crate_field: _, Error_>

(See also VisibilityAsyncTryBuilder::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
private_fieldDirectly pass in the value this field should contain
public_field_builderUse a function or closure: (private_field: &_) -> Result<public_field: _, Error_>
pub_crate_field_builderUse a function or closure: (private_field: &_) -> Result<pub_crate_field: _, Error_>

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

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

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

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

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

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

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

Provides a mutable reference to pub_crate_field. This method was generated because pub_crate_field is a tail field. No borrow_pub_crate_field_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.