pub struct ScaleActorCommand {
pub actor_ref: String,
pub annotations: Option<AnnotationMap>,
pub max_concurrent: u16,
pub host_id: String,
}
Fields§
§actor_ref: String
Image reference for the actor.
annotations: Option<AnnotationMap>
Optional set of annotations used to describe the nature of this actor scale command. For example, autonomous agents may wish to “tag” scale requests as part of a given deployment
max_concurrent: u16
The maximum number of concurrent executing instances of this actor. If omitted or set to zero there is no maximum.
host_id: String
Host ID on which to scale this actor
Trait Implementations§
source§impl Clone for ScaleActorCommand
impl Clone for ScaleActorCommand
source§fn clone(&self) -> ScaleActorCommand
fn clone(&self) -> ScaleActorCommand
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ScaleActorCommand
impl Debug for ScaleActorCommand
source§impl Default for ScaleActorCommand
impl Default for ScaleActorCommand
source§fn default() -> ScaleActorCommand
fn default() -> ScaleActorCommand
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ScaleActorCommand
impl<'de> Deserialize<'de> for ScaleActorCommand
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 PartialEq for ScaleActorCommand
impl PartialEq for ScaleActorCommand
source§fn eq(&self, other: &ScaleActorCommand) -> bool
fn eq(&self, other: &ScaleActorCommand) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ScaleActorCommand
impl Serialize for ScaleActorCommand
impl Eq for ScaleActorCommand
impl StructuralEq for ScaleActorCommand
impl StructuralPartialEq for ScaleActorCommand
Auto Trait Implementations§
impl RefUnwindSafe for ScaleActorCommand
impl Send for ScaleActorCommand
impl Sync for ScaleActorCommand
impl Unpin for ScaleActorCommand
impl UnwindSafe for ScaleActorCommand
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more