pub enum DirectiveKind {
Todo,
Wait,
Note,
Warning,
AttentionSink,
AddressMap,
}Expand description
The kind of orchestration directive.
Variants§
Todo
Runtime should schedule work.
Wait
Runtime should wait.
Note
Informational note.
Warning
Warning.
AttentionSink
Attention sink hint for inference runtimes.
AddressMap
Address map entry for mesh routing.
Trait Implementations§
Source§impl Clone for DirectiveKind
impl Clone for DirectiveKind
Source§fn clone(&self) -> DirectiveKind
fn clone(&self) -> DirectiveKind
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 DirectiveKind
Source§impl Debug for DirectiveKind
impl Debug for DirectiveKind
Source§impl<'de> Deserialize<'de> for DirectiveKind
impl<'de> Deserialize<'de> for DirectiveKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for DirectiveKind
Source§impl PartialEq for DirectiveKind
impl PartialEq for DirectiveKind
Source§impl Serialize for DirectiveKind
impl Serialize for DirectiveKind
impl StructuralPartialEq for DirectiveKind
Auto Trait Implementations§
impl Freeze for DirectiveKind
impl RefUnwindSafe for DirectiveKind
impl Send for DirectiveKind
impl Sync for DirectiveKind
impl Unpin for DirectiveKind
impl UnsafeUnpin for DirectiveKind
impl UnwindSafe for DirectiveKind
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