pub struct RuntimeSnapshot {
pub runtime_id: String,
pub runtime: RuntimePhase,
pub generation: u64,
pub revision: u64,
pub member_node_ids: Vec<String>,
pub reason: Option<String>,
pub retry_after_ms: Option<u64>,
pub updated_at_ms: i64,
}Expand description
Authoritative state of one logical business Runtime. Several identity shells may reference this object for singleton/shared Node policies.
Fields§
§runtime_id: String§runtime: RuntimePhase§generation: u64§revision: u64§member_node_ids: Vec<String>§reason: Option<String>§retry_after_ms: Option<u64>§updated_at_ms: i64Trait Implementations§
Source§impl Clone for RuntimeSnapshot
impl Clone for RuntimeSnapshot
Source§fn clone(&self) -> RuntimeSnapshot
fn clone(&self) -> RuntimeSnapshot
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 RuntimeSnapshot
impl Debug for RuntimeSnapshot
Source§impl<'de> Deserialize<'de> for RuntimeSnapshot
impl<'de> Deserialize<'de> for RuntimeSnapshot
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
impl Eq for RuntimeSnapshot
Source§impl PartialEq for RuntimeSnapshot
impl PartialEq for RuntimeSnapshot
Source§impl Serialize for RuntimeSnapshot
impl Serialize for RuntimeSnapshot
impl StructuralPartialEq for RuntimeSnapshot
Auto Trait Implementations§
impl Freeze for RuntimeSnapshot
impl RefUnwindSafe for RuntimeSnapshot
impl Send for RuntimeSnapshot
impl Sync for RuntimeSnapshot
impl Unpin for RuntimeSnapshot
impl UnsafeUnpin for RuntimeSnapshot
impl UnwindSafe for RuntimeSnapshot
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