pub enum Sum<A, B> {
Inl(A),
Inr(B),
}
Variants
Inl(A)
Inr(B)
Trait Implementations
sourceimpl<'de, A, B> Deserialize<'de> for Sum<A, B> where
A: Deserialize<'de>,
B: Deserialize<'de>,
impl<'de, A, B> Deserialize<'de> for Sum<A, B> where
A: Deserialize<'de>,
B: Deserialize<'de>,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Sum<A, B>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Sum<A, B>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<A, B> ForwardChannel for Sum<A, B> where
A: ForwardChannel,
B: ForwardChannel,
impl<A, B> ForwardChannel for Sum<A, B> where
A: ForwardChannel,
B: ForwardChannel,
fn forward_to(self, sender1: OpaqueSender, receiver1: OpaqueReceiver)
fn forward_from(sender1: OpaqueSender, receiver1: OpaqueReceiver) -> Sum<A, B>
sourceimpl<A, B> Serialize for Sum<A, B> where
A: Serialize,
B: Serialize,
impl<A, B> Serialize for Sum<A, B> where
A: Serialize,
B: Serialize,
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
impl<A, B> Copy for Sum<A, B> where
A: Copy,
B: Copy,
Auto Trait Implementations
impl<A, B> RefUnwindSafe for Sum<A, B> where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for Sum<A, B> where
A: Send,
B: Send,
impl<A, B> Sync for Sum<A, B> where
A: Sync,
B: Sync,
impl<A, B> Unpin for Sum<A, B> where
A: Unpin,
B: Unpin,
impl<A, B> UnwindSafe for Sum<A, B> where
A: UnwindSafe,
B: UnwindSafe,
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
sourceimpl<T, F, A> HasRecApp<F, A> for T where
F: 'static + RecApp<A, Applied = T>,
A: 'static,
T: 'static + Send,
impl<T, F, A> HasRecApp<F, A> for T where
F: 'static + RecApp<A, Applied = T>,
A: 'static,
T: 'static + Send,
sourceimpl<'a, S, Row, F> HasSumApp<'a, Row, F> for S where
F: TyCon,
S: Send,
Row: SumApp<'a, F, Applied = S>,
impl<'a, S, Row, F> HasSumApp<'a, Row, F> for S where
F: TyCon,
S: Send,
Row: SumApp<'a, F, Applied = S>,
sourceimpl<'a, T, F, A> HasTypeApp<'a, F, A> for T where
T: Send,
F: TypeApp<'a, A, Applied = T>,
impl<'a, T, F, A> HasTypeApp<'a, F, A> for T where
T: Send,
F: TypeApp<'a, A, Applied = T>,
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more