pub enum ChannelControl {
SubAuto,
FeedbackAuto(Feedback),
UnsubAuto,
SubSource(u32),
UnsubSource(u32),
PubStart,
PubData(Vec<u8>),
PubStop,
}Variants§
SubAuto
FeedbackAuto(Feedback)
UnsubAuto
SubSource(u32)
UnsubSource(u32)
PubStart
PubData(Vec<u8>)
PubStop
Trait Implementations§
Source§impl Clone for ChannelControl
impl Clone for ChannelControl
Source§fn clone(&self) -> ChannelControl
fn clone(&self) -> ChannelControl
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 ChannelControl
impl Debug for ChannelControl
Source§impl PartialEq for ChannelControl
impl PartialEq for ChannelControl
impl Eq for ChannelControl
impl StructuralPartialEq for ChannelControl
Auto Trait Implementations§
impl Freeze for ChannelControl
impl RefUnwindSafe for ChannelControl
impl Send for ChannelControl
impl Sync for ChannelControl
impl Unpin for ChannelControl
impl UnwindSafe for ChannelControl
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