Trait exprz::Group[][src]

pub trait Group<E> where
    E: Expression
{ type Ref: GroupReference<E>; fn reference(&self) -> Self::Ref; }

Expression Group Trait

Associated Types

type Ref: GroupReference<E>[src]

Reference Type

Loading content...

Required methods

fn reference(&self) -> Self::Ref[src]

Returns an inner reference to the group.

Loading content...

Implementations on Foreign Types

impl<E> Group<E> for Vec<E> where
    E: Expression
[src]

This is supported on crate feature alloc only.

type Ref = &'e Self

Loading content...

Implementors

impl<T> Group<Expr<T, usize, usize>> for ExprGroup<T>[src]

This is supported on crate feature buffered only.

type Ref = ExprGroupReference<'e, T>

Loading content...