pub enum SensorSampling {
Request(SamplingRequest),
Reply(SamplingReply),
}
Expand description
The messages that control how sensors are sampled
Variants§
Request(SamplingRequest)
Reply(SamplingReply)
Trait Implementations§
Source§impl Clone for SensorSampling
impl Clone for SensorSampling
Source§fn clone(&self) -> SensorSampling
fn clone(&self) -> SensorSampling
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 SensorSampling
impl Debug for SensorSampling
Source§impl KatcpMessage for SensorSampling
impl KatcpMessage for SensorSampling
fn to_message(&self, id: Option<u32>) -> MessageResult
Source§impl PartialEq for SensorSampling
impl PartialEq for SensorSampling
Source§impl TryFrom<&str> for SensorSampling
impl TryFrom<&str> for SensorSampling
Source§impl TryFrom<Message> for SensorSampling
impl TryFrom<Message> for SensorSampling
impl StructuralPartialEq for SensorSampling
Auto Trait Implementations§
impl Freeze for SensorSampling
impl RefUnwindSafe for SensorSampling
impl Send for SensorSampling
impl Sync for SensorSampling
impl Unpin for SensorSampling
impl UnwindSafe for SensorSampling
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