pub struct ScheduleCheckLocks {
find_schedule: bool,
channel_receive: bool,
channel_send: bool,
inapplicable_command: bool,
}Expand description
Contains all inhibition flags for a specific schedule communication
Fields§
§find_schedule: boolinhibition flag to avoid flooding the log file with repeated messages about not finding schedule entry
channel_receive: boolinhibition flag to avoid flooding the log file with repeated messages about failure to receive information via the channel
channel_send: boolinhibition flag to avoid flooding the log file with repeated messages about failure to send information via the channel
inapplicable_command: boolinhibition flag to avoid flooding the log file with repeated messages about having received inapplicable command
Trait Implementations§
Source§impl Default for ScheduleCheckLocks
impl Default for ScheduleCheckLocks
Source§fn default() -> ScheduleCheckLocks
fn default() -> ScheduleCheckLocks
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScheduleCheckLocks
impl RefUnwindSafe for ScheduleCheckLocks
impl Send for ScheduleCheckLocks
impl Sync for ScheduleCheckLocks
impl Unpin for ScheduleCheckLocks
impl UnwindSafe for ScheduleCheckLocks
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