pub struct ReplayFromPayload {
pub rollout_id: String,
pub from_seq: u64,
pub kinds: Vec<String>,
}Expand description
Synthetic Replay-From payload shape. Documented for the follow-up that wires CP to emit per-event replay bodies; today the agent only sees the seq header.
Fields§
§rollout_id: String§from_seq: u64§kinds: Vec<String>agent_event_kind strings the CP plans to synthesise for the
agent. v0.2 emits seq-only; this field is forward-compat.
Trait Implementations§
Source§impl Clone for ReplayFromPayload
impl Clone for ReplayFromPayload
Source§fn clone(&self) -> ReplayFromPayload
fn clone(&self) -> ReplayFromPayload
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 ReplayFromPayload
impl Debug for ReplayFromPayload
Source§impl<'de> Deserialize<'de> for ReplayFromPayload
impl<'de> Deserialize<'de> for ReplayFromPayload
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
Auto Trait Implementations§
impl Freeze for ReplayFromPayload
impl RefUnwindSafe for ReplayFromPayload
impl Send for ReplayFromPayload
impl Sync for ReplayFromPayload
impl Unpin for ReplayFromPayload
impl UnwindSafe for ReplayFromPayload
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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