#[repr(transparent)]
pub struct DocumentationExample { actual_data: MaybeUninit<DocumentationExampleInternal>, }
Expand description

The self-referencing struct.

Fields§

§actual_data: MaybeUninit<DocumentationExampleInternal>

Implementations§

source§

impl DocumentationExample

source

pub(crate) fn new( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> &'this i32, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> &'this mut f32 ) -> DocumentationExample

Constructs a new instance of this self-referential struct. (See also DocumentationExampleBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> int_reference: _
float_reference_builderUse a function or closure: (float_data: &mut _) -> float_reference: _
source

pub(crate) async fn new_async( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Pin<Box<dyn Future<Output = &'this i32> + 'this>>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Pin<Box<dyn Future<Output = &'this mut f32> + 'this>> ) -> DocumentationExample

Constructs a new instance of this self-referential struct. (See also DocumentationExampleAsyncBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> int_reference: _
float_reference_builderUse a function or closure: (float_data: &mut _) -> float_reference: _
source

pub(crate) async fn new_async_send( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Pin<Box<dyn Future<Output = &'this i32> + Send + 'this>>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Pin<Box<dyn Future<Output = &'this mut f32> + Send + 'this>> ) -> DocumentationExample

Constructs a new instance of this self-referential struct. (See also DocumentationExampleAsyncSendBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> int_reference: _
float_reference_builderUse a function or closure: (float_data: &mut _) -> float_reference: _
source

pub(crate) fn try_new<Error_>( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Result<&'this i32, Error_>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Result<&'this mut f32, Error_> ) -> Result<DocumentationExample, Error_>

(See also DocumentationExampleTryBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> Result<int_reference: _, Error_>
float_reference_builderUse a function or closure: (float_data: &mut _) -> Result<float_reference: _, Error_>
source

pub(crate) fn try_new_or_recover<Error_>( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Result<&'this i32, Error_>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Result<&'this mut f32, Error_> ) -> Result<DocumentationExample, (Error_, Heads)>

(See also DocumentationExampleTryBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> Result<int_reference: _, Error_>
float_reference_builderUse a function or closure: (float_data: &mut _) -> Result<float_reference: _, Error_>
source

pub(crate) async fn try_new_async<Error_>( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Pin<Box<dyn Future<Output = Result<&'this i32, Error_>> + 'this>>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Pin<Box<dyn Future<Output = Result<&'this mut f32, Error_>> + 'this>> ) -> Result<DocumentationExample, Error_>

(See also DocumentationExampleAsyncTryBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> Result<int_reference: _, Error_>
float_reference_builderUse a function or closure: (float_data: &mut _) -> Result<float_reference: _, Error_>
source

pub(crate) async fn try_new_or_recover_async<Error_>( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Pin<Box<dyn Future<Output = Result<&'this i32, Error_>> + 'this>>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Pin<Box<dyn Future<Output = Result<&'this mut f32, Error_>> + 'this>> ) -> Result<DocumentationExample, (Error_, Heads)>

(See also DocumentationExampleAsyncTryBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> Result<int_reference: _, Error_>
float_reference_builderUse a function or closure: (float_data: &mut _) -> Result<float_reference: _, Error_>
source

pub(crate) async fn try_new_async_send<Error_>( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Pin<Box<dyn Future<Output = Result<&'this i32, Error_>> + Send + 'this>>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Pin<Box<dyn Future<Output = Result<&'this mut f32, Error_>> + Send + 'this>> ) -> Result<DocumentationExample, Error_>

(See also DocumentationExampleAsyncSendTryBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> Result<int_reference: _, Error_>
float_reference_builderUse a function or closure: (float_data: &mut _) -> Result<float_reference: _, Error_>
source

pub(crate) async fn try_new_or_recover_async_send<Error_>( int_data: i32, float_data: f32, int_reference_builder: impl for<'this> FnOnce(&'this i32) -> Pin<Box<dyn Future<Output = Result<&'this i32, Error_>> + Send + 'this>>, float_reference_builder: impl for<'this> FnOnce(&'this mut f32) -> Pin<Box<dyn Future<Output = Result<&'this mut f32, Error_>> + Send + 'this>> ) -> Result<DocumentationExample, (Error_, Heads)>

(See also DocumentationExampleAsyncSendTryBuilder::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
int_dataDirectly pass in the value this field should contain
float_dataDirectly pass in the value this field should contain
int_reference_builderUse a function or closure: (int_data: &_) -> Result<int_reference: _, Error_>
float_reference_builderUse a function or closure: (float_data: &mut _) -> Result<float_reference: _, Error_>
source

pub(crate) fn with_int_data<'outer_borrow, ReturnType>( &'outer_borrow self, user: impl for<'this> FnOnce(&'outer_borrow i32) -> ReturnType ) -> ReturnType

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

source

pub(crate) fn borrow_int_data<'this>(&'this self) -> &'this i32

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

source

pub(crate) fn with_int_reference<'outer_borrow, ReturnType>( &'outer_borrow self, user: impl for<'this> FnOnce(&'outer_borrow &'this i32) -> ReturnType ) -> ReturnType

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

source

pub(crate) fn borrow_int_reference<'this>(&'this self) -> &'this &'this i32

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

source

pub(crate) fn with_int_reference_mut<'outer_borrow, ReturnType>( &'outer_borrow mut self, user: impl for<'this> FnOnce(&'outer_borrow mut &'this i32) -> ReturnType ) -> ReturnType

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

source

pub(crate) fn with_float_reference<'outer_borrow, ReturnType>( &'outer_borrow self, user: impl for<'this> FnOnce(&'outer_borrow &'this mut f32) -> ReturnType ) -> ReturnType

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

source

pub(crate) fn borrow_float_reference<'this>( &'this self ) -> &'this &'this mut f32

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

source

pub(crate) fn with_float_reference_mut<'outer_borrow, ReturnType>( &'outer_borrow mut self, user: impl for<'this> FnOnce(&'outer_borrow mut &'this mut f32) -> ReturnType ) -> ReturnType

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

source

pub(crate) fn with<'outer_borrow, ReturnType>( &'outer_borrow self, user: impl for<'this> FnOnce(BorrowedFields<'outer_borrow, 'this>) -> ReturnType ) -> ReturnType

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

source

pub(crate) fn with_mut<'outer_borrow, ReturnType>( &'outer_borrow mut self, user: impl for<'this0, 'this1, 'this2> FnOnce(BorrowedMutFields<'outer_borrow, 'this2, 'this1, 'this0>) -> ReturnType ) -> ReturnType

This method provides mutable references to all tail fields.

source

pub(crate) fn into_heads(self) -> Heads

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

Trait Implementations§

source§

impl Drop for DocumentationExample

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.