pub enum YubabaCommand {
RestartWorkload {
target: MeshIdent,
},
Drain {
target: MeshIdent,
},
Scale {
target: MeshIdent,
replicas: u32,
},
}Expand description
Command issued to the yubaba RPC surface.
A local representation of the bounded cluster operations tower can request; mirrors R091’s yubaba RPC action variants.
Variants§
Trait Implementations§
Source§impl Clone for YubabaCommand
impl Clone for YubabaCommand
Source§fn clone(&self) -> YubabaCommand
fn clone(&self) -> YubabaCommand
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 moreSource§impl Debug for YubabaCommand
impl Debug for YubabaCommand
Source§impl PartialEq for YubabaCommand
impl PartialEq for YubabaCommand
impl StructuralPartialEq for YubabaCommand
Auto Trait Implementations§
impl Freeze for YubabaCommand
impl RefUnwindSafe for YubabaCommand
impl Send for YubabaCommand
impl Sync for YubabaCommand
impl Unpin for YubabaCommand
impl UnsafeUnpin for YubabaCommand
impl UnwindSafe for YubabaCommand
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