Struct ferrite_session::prelude::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]

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
    D: Deserializer<'a>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

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

fn forward_to(self, sender: OpaqueSender, receiver: OpaqueReceiver)[src]

fn forward_from(sender: OpaqueSender, receiver: OpaqueReceiver) -> Self[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]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<F, A, X> HasRecApp<F, A> for X where
    X: HasRecApp<F, A>, 
[src]