[][src]Struct join_impl::expr_chain::action_expr_chain::ActionExprChainGenerator

pub struct ActionExprChainGenerator<'a> { /* fields omitted */ }

Generator of ActionExprChain.

Methods

impl<'a> ActionExprChainGenerator<'a>[src]

pub fn new(
    group_determiners: &'a [GroupDeterminer],
    deferred_determiner: &'a GroupDeterminer,
    wrap_determiner: &'a GroupDeterminer
) -> Self
[src]

Creates new ActionExprChainGenerator with given GroupDeterminer's.

pub fn from_parse_stream(&self, input: ParseStream) -> Result<ActionExprChain>[src]

Constructs new ActionExprChain from input ParseStream.

pub fn parse_unit<T: Parse>(
    &self,
    input: ParseStream,
    allow_empty_parsed: bool
) -> UnitResult<T>
[src]

Parses unit using self GroupDeterminer's to determine unit end.

Auto Trait Implementations

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.