pub struct SetBool<T: Debug> {
pub key: String,
pub value: bool,
/* private fields */
}Expand description
Sets a bool on the blackboard and succeeds.
Fields§
§key: String§value: boolTrait Implementations§
Auto Trait Implementations§
impl<T> Freeze for SetBool<T>
impl<T> RefUnwindSafe for SetBool<T>where
T: RefUnwindSafe,
impl<T> Send for SetBool<T>where
T: Send,
impl<T> Sync for SetBool<T>where
T: Sync,
impl<T> Unpin for SetBool<T>where
T: Unpin,
impl<T> UnsafeUnpin for SetBool<T>
impl<T> UnwindSafe for SetBool<T>where
T: UnwindSafe,
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