pub struct ScheduleInterrupt {
pub conditions: &'static [WaitCondition],
pub inside_interrupt: bool,
pub name: &'static str,
pub targets: &'static [ScheduleRecord],
}Fields§
§conditions: &'static [WaitCondition]§inside_interrupt: bool§name: &'static str§targets: &'static [ScheduleRecord]Trait Implementations§
Source§impl Clone for ScheduleInterrupt
impl Clone for ScheduleInterrupt
Source§fn clone(&self) -> ScheduleInterrupt
fn clone(&self) -> ScheduleInterrupt
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 ScheduleInterrupt
Source§impl Debug for ScheduleInterrupt
impl Debug for ScheduleInterrupt
Source§impl Default for ScheduleInterrupt
impl Default for ScheduleInterrupt
Source§fn default() -> ScheduleInterrupt
fn default() -> ScheduleInterrupt
Returns the “default value” for a type. Read more
Source§impl PartialEq for ScheduleInterrupt
impl PartialEq for ScheduleInterrupt
impl StructuralPartialEq for ScheduleInterrupt
Auto Trait Implementations§
impl Freeze for ScheduleInterrupt
impl RefUnwindSafe for ScheduleInterrupt
impl Send for ScheduleInterrupt
impl Sync for ScheduleInterrupt
impl Unpin for ScheduleInterrupt
impl UnsafeUnpin for ScheduleInterrupt
impl UnwindSafe for ScheduleInterrupt
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