pub enum PatchJob_State {
STATE_UNSPECIFIED = 0,
STARTED = 1,
INSTANCE_LOOKUP = 2,
PATCHING = 3,
SUCCEEDED = 4,
COMPLETED_WITH_ERRORS = 5,
CANCELED = 6,
TIMED_OUT = 7,
}Variants§
STATE_UNSPECIFIED = 0
STARTED = 1
INSTANCE_LOOKUP = 2
PATCHING = 3
SUCCEEDED = 4
COMPLETED_WITH_ERRORS = 5
CANCELED = 6
TIMED_OUT = 7
Trait Implementations§
Source§impl Clone for PatchJob_State
impl Clone for PatchJob_State
Source§fn clone(&self) -> PatchJob_State
fn clone(&self) -> PatchJob_State
Returns a duplicate 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 PatchJob_State
impl Debug for PatchJob_State
Source§impl Default for PatchJob_State
impl Default for PatchJob_State
Source§impl Hash for PatchJob_State
impl Hash for PatchJob_State
Source§impl PartialEq for PatchJob_State
impl PartialEq for PatchJob_State
Source§impl ProtobufEnum for PatchJob_State
impl ProtobufEnum for PatchJob_State
Source§fn from_i32(value: i32) -> Option<PatchJob_State>
fn from_i32(value: i32) -> Option<PatchJob_State>
Try to create an enum from
i32 value.
Return None if value is unknown.Source§fn enum_descriptor_static() -> &'static EnumDescriptor
fn enum_descriptor_static() -> &'static EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> &'static EnumValueDescriptor
fn descriptor(&self) -> &'static EnumValueDescriptor
Get enum value descriptor.
Source§fn enum_descriptor(&self) -> &'static EnumDescriptor
fn enum_descriptor(&self) -> &'static EnumDescriptor
Get enum descriptor.
Source§impl ProtobufValue for PatchJob_State
impl ProtobufValue for PatchJob_State
Source§fn as_ref(&self) -> ReflectValueRef<'_>
fn as_ref(&self) -> ReflectValueRef<'_>
As ref
Source§fn is_non_zero(&self) -> bool
fn is_non_zero(&self) -> bool
Is value non-zero?
Source§fn as_ref_copy(&self) -> ReflectValueRef<'static>
fn as_ref_copy(&self) -> ReflectValueRef<'static>
impl Copy for PatchJob_State
impl Eq for PatchJob_State
impl StructuralPartialEq for PatchJob_State
Auto Trait Implementations§
impl Freeze for PatchJob_State
impl RefUnwindSafe for PatchJob_State
impl Send for PatchJob_State
impl Sync for PatchJob_State
impl Unpin for PatchJob_State
impl UnwindSafe for PatchJob_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