pub enum ExecutionResourceAuthority {
LegacyEngine,
PlanRuntime,
}Expand description
Declares the authoritative owner of request-lifetime accelerator resources.
PlanRuntime owns admission, allocation, fences, backpressure, and release.
LegacyEngine remains only for executors that have not migrated.
Variants§
Trait Implementations§
Source§impl Clone for ExecutionResourceAuthority
impl Clone for ExecutionResourceAuthority
Source§fn clone(&self) -> ExecutionResourceAuthority
fn clone(&self) -> ExecutionResourceAuthority
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 ExecutionResourceAuthority
Source§impl Debug for ExecutionResourceAuthority
impl Debug for ExecutionResourceAuthority
Source§impl Default for ExecutionResourceAuthority
impl Default for ExecutionResourceAuthority
Source§fn default() -> ExecutionResourceAuthority
fn default() -> ExecutionResourceAuthority
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecutionResourceAuthority
impl<'de> Deserialize<'de> for ExecutionResourceAuthority
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionResourceAuthority, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ExecutionResourceAuthority, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ExecutionResourceAuthority
Source§impl Serialize for ExecutionResourceAuthority
impl Serialize for ExecutionResourceAuthority
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ExecutionResourceAuthority
Auto Trait Implementations§
impl Freeze for ExecutionResourceAuthority
impl RefUnwindSafe for ExecutionResourceAuthority
impl Send for ExecutionResourceAuthority
impl Sync for ExecutionResourceAuthority
impl Unpin for ExecutionResourceAuthority
impl UnsafeUnpin for ExecutionResourceAuthority
impl UnwindSafe for ExecutionResourceAuthority
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