pub struct RunDelivery {
pub target: Option<String>,
pub state: Option<String>,
pub attempts: Option<u64>,
pub last_error: Option<String>,
pub delivered_at: Option<String>,
}Expand description
A fire’s delivery outcome (ORCH-13).
Fields§
§target: Option<String>Where the output was addressed: Hermes’s obligation surface
<platform>:<chat_id>[:<thread_id>], or OpenClaw’s job-declared
<channel>[:<to>].
state: Option<String>The harness’s own state word: Hermes pending | attempting | delivered | failed | abandoned, OpenClaw delivery_status.
attempts: Option<u64>Delivery attempts recorded. Hermes only — OpenClaw’s run log counts no attempts.
last_error: Option<String>The last delivery failure, verbatim.
delivered_at: Option<String>When the harness stamped the delivery as done. Hermes only: it is the
obligation’s updated_at on a delivered row (the ledger writes no
separate delivered-at column). OpenClaw’s run log records delivered
as a flag with no instant of its own, so it stays empty there.
Trait Implementations§
Source§impl Clone for RunDelivery
impl Clone for RunDelivery
Source§fn clone(&self) -> RunDelivery
fn clone(&self) -> RunDelivery
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 RunDelivery
impl Debug for RunDelivery
Source§impl<'de> Deserialize<'de> for RunDelivery
impl<'de> Deserialize<'de> for RunDelivery
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunDelivery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunDelivery, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RunDelivery
Source§impl PartialEq for RunDelivery
impl PartialEq for RunDelivery
Source§impl Serialize for RunDelivery
impl Serialize for RunDelivery
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RunDelivery
Auto Trait Implementations§
impl Freeze for RunDelivery
impl RefUnwindSafe for RunDelivery
impl Send for RunDelivery
impl Sync for RunDelivery
impl Unpin for RunDelivery
impl UnsafeUnpin for RunDelivery
impl UnwindSafe for RunDelivery
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.