pub struct ChannelBackoffArmedPayload {
pub channel_kind: String,
pub channel_slug: String,
pub attempt: u32,
pub step_ms: u64,
pub delay_ms: u64,
}Expand description
Payload for khive_types::EventKind::ChannelBackoffArmed.
Fields§
§channel_kind: String§channel_slug: String§attempt: u32§step_ms: u64§delay_ms: u64Trait Implementations§
Source§impl Clone for ChannelBackoffArmedPayload
impl Clone for ChannelBackoffArmedPayload
Source§fn clone(&self) -> ChannelBackoffArmedPayload
fn clone(&self) -> ChannelBackoffArmedPayload
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 ChannelBackoffArmedPayload
impl Debug for ChannelBackoffArmedPayload
Source§impl<'de> Deserialize<'de> for ChannelBackoffArmedPayload
impl<'de> Deserialize<'de> for ChannelBackoffArmedPayload
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 StructuralPartialEq for ChannelBackoffArmedPayload
Auto Trait Implementations§
impl Freeze for ChannelBackoffArmedPayload
impl RefUnwindSafe for ChannelBackoffArmedPayload
impl Send for ChannelBackoffArmedPayload
impl Sync for ChannelBackoffArmedPayload
impl Unpin for ChannelBackoffArmedPayload
impl UnsafeUnpin for ChannelBackoffArmedPayload
impl UnwindSafe for ChannelBackoffArmedPayload
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