pub enum State {
Modified,
Unmodified,
}
Variants§
Modified
The action we requested was performed from this process, e.g. we tried to create the cluster, and we did indeed create the cluster.
Unmodified
The action we requested was performed by another process, or was not necessary, e.g. we tried to stop the cluster but it was already stopped.
Trait Implementations§
source§impl PartialEq for State
impl PartialEq for State
impl Eq for State
impl StructuralEq for State
impl StructuralPartialEq for State
Auto Trait Implementations§
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
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