pub enum HostActivationMode {
None,
Command,
}Expand description
How a destination expects to be woken, as its binding declares it.
Distinct from which adapter the deployment has: a destination may ask to be woken in a deployment with no adapter, and the honest answer is that its deliveries wait to be pulled.
Variants§
None
Do not wake it; it asks for its own work.
Command
Wake it through the operator’s configured command.
Implementations§
Trait Implementations§
Source§impl Clone for HostActivationMode
impl Clone for HostActivationMode
impl Copy for HostActivationMode
Source§impl Debug for HostActivationMode
impl Debug for HostActivationMode
Source§impl Default for HostActivationMode
impl Default for HostActivationMode
Source§impl<'de> Deserialize<'de> for HostActivationMode
impl<'de> Deserialize<'de> for HostActivationMode
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
Source§impl Display for HostActivationMode
impl Display for HostActivationMode
impl Eq for HostActivationMode
Source§impl Hash for HostActivationMode
impl Hash for HostActivationMode
Source§impl Ord for HostActivationMode
impl Ord for HostActivationMode
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for HostActivationMode
impl PartialEq for HostActivationMode
Source§impl PartialOrd for HostActivationMode
impl PartialOrd for HostActivationMode
Source§impl Serialize for HostActivationMode
impl Serialize for HostActivationMode
impl StructuralPartialEq for HostActivationMode
Auto Trait Implementations§
impl Freeze for HostActivationMode
impl RefUnwindSafe for HostActivationMode
impl Send for HostActivationMode
impl Sync for HostActivationMode
impl Unpin for HostActivationMode
impl UnsafeUnpin for HostActivationMode
impl UnwindSafe for HostActivationMode
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