[][src]Struct vtil_parser::VTIL

pub struct VTIL<T: 'static> { /* fields omitted */ }

Implementations

impl<T: 'static> VTIL<T>[src]

pub fn new(
    source: Box<T>,
    inner_builder: impl for<'this> FnOnce(&'this <Box<T> as Deref>::Target) -> VTILInner<'this>,
    phantom: PhantomData<T>
) -> Self
[src]

Constructs a new instance of this self-referential struct. (See also VTILBuilder::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
sourceDirectly pass in the value this field should contain
inner_builderUse a function or closure: (source: &_) -> inner: _
phantomDirectly pass in the value this field should contain

pub fn try_new<Error_>(
    source: Box<T>,
    inner_builder: impl for<'this> FnOnce(&'this <Box<T> as Deref>::Target) -> Result<VTILInner<'this>, Error_>,
    phantom: PhantomData<T>
) -> Result<Self, Error_>
[src]

(See also VTILTryBuilder::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
sourceDirectly pass in the value this field should contain
inner_builderUse a function or closure: (source: &_) -> Result<inner: _, Error_>
phantomDirectly pass in the value this field should contain

pub fn try_new_or_recover<Error_>(
    source: Box<T>,
    inner_builder: impl for<'this> FnOnce(&'this <Box<T> as Deref>::Target) -> Result<VTILInner<'this>, Error_>,
    phantom: PhantomData<T>
) -> Result<Self, (Error_, Heads<T>)>
[src]

(See also VTILTryBuilder::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
sourceDirectly pass in the value this field should contain
inner_builderUse a function or closure: (source: &_) -> Result<inner: _, Error_>
phantomDirectly pass in the value this field should contain

pub fn with_source_contents<'outer_borrow, ReturnType>(
    &'outer_borrow self,
    user: impl for<'this> FnOnce(&'outer_borrow <Box<T> as Deref>::Target) -> ReturnType
) -> ReturnType
[src]

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

pub fn with_inner<'outer_borrow, ReturnType>(
    &'outer_borrow self,
    user: impl for<'this> FnOnce(&'outer_borrow VTILInner<'this>) -> ReturnType
) -> ReturnType
[src]

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

pub fn with_inner_mut<'outer_borrow, ReturnType>(
    &'outer_borrow mut self,
    user: impl for<'this> FnOnce(&'outer_borrow mut VTILInner<'this>) -> ReturnType
) -> ReturnType
[src]

Provides a mutable reference to inner. This method was generated because inner is a tail field.

pub fn with_phantom<'outer_borrow, ReturnType>(
    &'outer_borrow self,
    user: impl for<'this> FnOnce(&'outer_borrow PhantomData<T>) -> ReturnType
) -> ReturnType
[src]

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

pub fn with_phantom_mut<'outer_borrow, ReturnType>(
    &'outer_borrow mut self,
    user: impl for<'this> FnOnce(&'outer_borrow mut PhantomData<T>) -> ReturnType
) -> ReturnType
[src]

Provides a mutable reference to phantom. This method was generated because phantom is a tail field.

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

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

pub fn with_mut<'outer_borrow, ReturnType>(
    &'outer_borrow mut self,
    user: impl for<'this> FnOnce(BorrowedMutFields<'outer_borrow, 'this, T>) -> ReturnType
) -> ReturnType
[src]

This method provides mutable references to all tail fields.

pub fn into_heads(self) -> Heads<T>[src]

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

impl<T> VTIL<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for VTIL<T> where
    T: RefUnwindSafe

impl<T> Send for VTIL<T> where
    T: Send

impl<T> Sync for VTIL<T> where
    T: Sync

impl<T> Unpin for VTIL<T> where
    T: Unpin

impl<T> UnwindSafe for VTIL<T> where
    T: 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.