pub enum ReplyRule {
Opens,
Any,
AnyNonReceipt,
Only(Vec<Symbol>),
}Expand description
Parent-intent rule for a BRIDGE move.
Variants§
Opens
The move opens a new thread and may not cite parents.
Any
The move may answer any parent intent.
AnyNonReceipt
The move may answer any parent intent except receipt.
Only(Vec<Symbol>)
The move may answer only the listed parent intents.
Trait Implementations§
impl Eq for ReplyRule
impl StructuralPartialEq for ReplyRule
Auto Trait Implementations§
impl Freeze for ReplyRule
impl RefUnwindSafe for ReplyRule
impl Send for ReplyRule
impl Sync for ReplyRule
impl Unpin for ReplyRule
impl UnsafeUnpin for ReplyRule
impl UnwindSafe for ReplyRule
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