Fields
row: Box<dyn HasSumApp<'a, Row, F> + 'a, Global>
Implementations
Trait Implementations
sourceimpl<'a, Row, F, T> Deserialize<'a> for AppSum<'a, Row, F> where
F: TyCon,
T: 'static + Send + Serialize + for<'de> Deserialize<'de>,
Row: SumApp<'a, F, Applied = T>,
impl<'a, Row, F, T> Deserialize<'a> for AppSum<'a, Row, F> where
F: TyCon,
T: 'static + Send + Serialize + for<'de> Deserialize<'de>,
Row: SumApp<'a, F, Applied = T>,
sourcefn deserialize<D>(
deserializer: D
) -> Result<AppSum<'a, Row, F>, <D as Deserializer<'a>>::Error> where
D: Deserializer<'a>,
fn deserialize<D>(
deserializer: D
) -> Result<AppSum<'a, Row, F>, <D as Deserializer<'a>>::Error> where
D: Deserializer<'a>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<Row, F, T> ForwardChannel for AppSum<'static, Row, F> where
F: TyCon + 'static + Send,
Row: 'static + SumApp<'static, F, Applied = T>,
T: ForwardChannel,
impl<Row, F, T> ForwardChannel for AppSum<'static, Row, F> where
F: TyCon + 'static + Send,
Row: 'static + SumApp<'static, F, Applied = T>,
T: ForwardChannel,
fn forward_to(self, sender: OpaqueSender, receiver: OpaqueReceiver)
fn forward_from(
sender: OpaqueSender,
receiver: OpaqueReceiver
) -> AppSum<'static, Row, F>
sourceimpl<Row, F> Serialize for AppSum<'static, Row, F> where
F: TyCon,
Row: SumApp<'static, F>,
<Row as SumApp<'static, F>>::Applied: 'static,
<Row as SumApp<'static, F>>::Applied: Send,
<Row as SumApp<'static, F>>::Applied: Serialize,
<Row as SumApp<'static, F>>::Applied: for<'de> Deserialize<'de>,
impl<Row, F> Serialize for AppSum<'static, Row, F> where
F: TyCon,
Row: SumApp<'static, F>,
<Row as SumApp<'static, F>>::Applied: 'static,
<Row as SumApp<'static, F>>::Applied: Send,
<Row as SumApp<'static, F>>::Applied: Serialize,
<Row as SumApp<'static, F>>::Applied: for<'de> Deserialize<'de>,
sourcefn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
fn serialize<S>(
&self,
serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error> where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl<'a, Row, F> !RefUnwindSafe for AppSum<'a, Row, F>
impl<'a, Row, F> Send for AppSum<'a, Row, F>
impl<'a, Row, F> !Sync for AppSum<'a, Row, F>
impl<'a, Row, F> Unpin for AppSum<'a, Row, F>
impl<'a, Row, F> !UnwindSafe for AppSum<'a, Row, F>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more