pub struct RolloutHostEntry {
pub host: String,
pub channel: String,
pub wave: u32,
pub target_closure_hash: String,
pub target_channel_ref: String,
pub dispatched_at: String,
pub terminal_state: Option<String>,
pub terminal_at: Option<String>,
}Fields§
§host: String§channel: String§wave: u32§target_closure_hash: String§target_channel_ref: String§dispatched_at: StringRFC3339, kept as string so malformed historical rows surface to the operator instead of being masked by a re-parse.
terminal_state: Option<String>None while the dispatch is still open (no confirm, no rollback).
terminal_at: Option<String>Trait Implementations§
Source§impl Clone for RolloutHostEntry
impl Clone for RolloutHostEntry
Source§fn clone(&self) -> RolloutHostEntry
fn clone(&self) -> RolloutHostEntry
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 RolloutHostEntry
impl Debug for RolloutHostEntry
Source§impl<'de> Deserialize<'de> for RolloutHostEntry
impl<'de> Deserialize<'de> for RolloutHostEntry
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 RolloutHostEntry
impl PartialEq for RolloutHostEntry
Source§impl Serialize for RolloutHostEntry
impl Serialize for RolloutHostEntry
impl StructuralPartialEq for RolloutHostEntry
Auto Trait Implementations§
impl Freeze for RolloutHostEntry
impl RefUnwindSafe for RolloutHostEntry
impl Send for RolloutHostEntry
impl Sync for RolloutHostEntry
impl Unpin for RolloutHostEntry
impl UnwindSafe for RolloutHostEntry
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