pub enum ReservedControl<'a> {
Call(Call<'a>),
WaitSec(WaitSec<'a>),
WaitUntil(WaitUntil<'a>),
CheckValue(CheckValue<'a>),
Command(Command<'a>),
Let(Let<'a>),
Get(Get<'a>),
}
Expand description
reserved controls
Variants§
Call(Call<'a>)
WaitSec(WaitSec<'a>)
WaitUntil(WaitUntil<'a>)
CheckValue(CheckValue<'a>)
Command(Command<'a>)
Let(Let<'a>)
Get(Get<'a>)
Trait Implementations§
Source§impl<'a> Debug for ReservedControl<'a>
impl<'a> Debug for ReservedControl<'a>
Source§impl<'a> PartialEq for ReservedControl<'a>
impl<'a> PartialEq for ReservedControl<'a>
impl<'a> StructuralPartialEq for ReservedControl<'a>
Auto Trait Implementations§
impl<'a> Freeze for ReservedControl<'a>
impl<'a> RefUnwindSafe for ReservedControl<'a>
impl<'a> Send for ReservedControl<'a>
impl<'a> Sync for ReservedControl<'a>
impl<'a> Unpin for ReservedControl<'a>
impl<'a> UnwindSafe for ReservedControl<'a>
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