pub enum MonitorLayout {
SpecOrder,
OverrunBeforeData,
ChangedOnly,
}Expand description
Which wire layout a lenient decode matched.
Variants§
SpecOrder
changed bitset, data, overrun bitset. The pvAccess specification order.
OverrunBeforeData
changed bitset, overrun bitset, data.
ChangedOnly
changed bitset, data, with no overrun bitset.
Trait Implementations§
Source§impl Clone for MonitorLayout
impl Clone for MonitorLayout
Source§fn clone(&self) -> MonitorLayout
fn clone(&self) -> MonitorLayout
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MonitorLayout
Source§impl Debug for MonitorLayout
impl Debug for MonitorLayout
impl Eq for MonitorLayout
Source§impl PartialEq for MonitorLayout
impl PartialEq for MonitorLayout
impl StructuralPartialEq for MonitorLayout
Auto Trait Implementations§
impl Freeze for MonitorLayout
impl RefUnwindSafe for MonitorLayout
impl Send for MonitorLayout
impl Sync for MonitorLayout
impl Unpin for MonitorLayout
impl UnsafeUnpin for MonitorLayout
impl UnwindSafe for MonitorLayout
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