pub enum FlagOp {
Add,
Set,
Remove,
}Expand description
Direction of a flag store operation.
Set replaces the message’s flag set with the given list; Add
and Remove patch the existing set. Shared by add_flags,
set_flags and delete_flags, surfaced on the per-backend
flag-store coroutines.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlagOp
impl RefUnwindSafe for FlagOp
impl Send for FlagOp
impl Sync for FlagOp
impl Unpin for FlagOp
impl UnsafeUnpin for FlagOp
impl UnwindSafe for FlagOp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> OrderedSeq<'_, T> for Twhere
T: Clone,
Source§impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
Source§impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
impl<T, S> SpanWrap<S> for Twhere
S: WrappingSpan<T>,
Source§fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
fn with_span(self, span: S) -> <S as WrappingSpan<Self>>::Spanned
Invokes
WrappingSpan::make_wrapped to wrap an AST node in a span.