Struct ferrite_session::functional::AppSum[][src]

pub struct AppSum<Row, F> {
    pub row: Box<dyn HasSumApp<Row, F>>,
}

Fields

row: Box<dyn HasSumApp<Row, F>>

Implementations

impl<Row, F> AppSum<Row, F> where
    F: TyCon,
    Row: SumApp<F>, 
[src]

pub fn get_sum(self) -> Row::Applied[src]

Trait Implementations

impl<'a, Row, F, T> Deserialize<'a> for AppSum<Row, F> where
    F: TyCon,
    T: Send + 'static,
    Row: SumApp<F, Applied = T>,
    T: Serialize + for<'de> Deserialize<'de>, 
[src]

impl<Row, F, T> ForwardChannel for AppSum<Row, F> where
    F: TyCon,
    F: Send + 'static,
    Row: SumApp<F, Applied = T>,
    T: ForwardChannel
[src]

impl<Row, F> Serialize for AppSum<Row, F> where
    F: TyCon,
    Row: SumApp<F>,
    Row::Applied: Send + 'static + Serialize + for<'de> Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<Row, F> !RefUnwindSafe for AppSum<Row, F>

impl<Row, F> Send for AppSum<Row, F>

impl<Row, F> !Sync for AppSum<Row, F>

impl<Row, F> Unpin for AppSum<Row, F>

impl<Row, F> !UnwindSafe for AppSum<Row, F>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<A> ForwardChannel for A where
    A: ForwardChannel
[src]

impl<T> From<T> for T[src]

impl<F, A, X> HasRecApp<F, A> for X where
    X: HasRecApp<F, A>, 
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,