Enum xio_common::SenderRegistration[][src]

pub enum SenderRegistration<T: Clone> {
    AttachSender {
        uuid: Uuid,
        sender: Sender<T>,
    },
    DetachSender {
        uuid: Uuid,
    },
}

Variants

Fields of AttachSender

Fields of DetachSender

Trait Implementations

impl<T: Clone + Clone> Clone for SenderRegistration<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> Send for SenderRegistration<T> where
    T: Send

impl<T> Sync for SenderRegistration<T> where
    T: Send