[][src]Trait join_impl::expr_chain::chain::Chain

pub trait Chain {
    type Member: Sized;
    fn get_members(&self) -> &[Self::Member];
fn get_pat(&self) -> Option<&PatIdent>; }

Chain trait describes any chain with members of type Member and optional PatIdent.

Associated Types

Loading content...

Required methods

fn get_members(&self) -> &[Self::Member]

Returns self members.

fn get_pat(&self) -> Option<&PatIdent>

Returns optional PatIdent associated with chain.

Loading content...

Implementors

impl Chain for ActionExprChain where
    Self: Sized
[src]

Implementation of Chain with ActionExpr members.

type Member = ActionExpr

Loading content...