pub enum SendableChannelType {
Input,
AudioInput,
Sensor,
Other,
}Expand description
The type of channel being sent in a sendable message
Variants§
Input
The input channel
AudioInput
The audio input channel
Sensor
The sensor channel
Other
Other channel type
Trait Implementations§
Source§impl Clone for SendableChannelType
impl Clone for SendableChannelType
Source§fn clone(&self) -> SendableChannelType
fn clone(&self) -> SendableChannelType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SendableChannelType
impl Debug for SendableChannelType
Source§impl<'de> Deserialize<'de> for SendableChannelType
impl<'de> Deserialize<'de> for SendableChannelType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SendableChannelType
impl RefUnwindSafe for SendableChannelType
impl Send for SendableChannelType
impl Sync for SendableChannelType
impl Unpin for SendableChannelType
impl UnsafeUnpin for SendableChannelType
impl UnwindSafe for SendableChannelType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more