pub struct CommandFailureDetector {
pub notification_class: u32,
pub notify_type: u32,
pub event_enable: u8,
pub time_delay: u32,
pub event_state: EventState,
pub acked_transitions: u8,
}Expand description
COMMAND_FAILURE event detector for commandable output objects (BO, MSO).
Transitions to OFFNORMAL when present_value differs from feedback_value. Returns to NORMAL when they match.
Fields§
§notification_class: u32§notify_type: u32§event_enable: u8§time_delay: u32§event_state: EventState§acked_transitions: u8Implementations§
Trait Implementations§
Source§impl Clone for CommandFailureDetector
impl Clone for CommandFailureDetector
Source§fn clone(&self) -> CommandFailureDetector
fn clone(&self) -> CommandFailureDetector
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 CommandFailureDetector
impl Debug for CommandFailureDetector
Auto Trait Implementations§
impl Freeze for CommandFailureDetector
impl RefUnwindSafe for CommandFailureDetector
impl Send for CommandFailureDetector
impl Sync for CommandFailureDetector
impl Unpin for CommandFailureDetector
impl UnsafeUnpin for CommandFailureDetector
impl UnwindSafe for CommandFailureDetector
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