pub struct ReceiptInfo {
pub agent: String,
pub session: Option<String>,
pub address: String,
pub stored_at: Option<String>,
pub delivered_at: Option<String>,
pub presented_at: Option<String>,
pub acknowledged_at: Option<String>,
pub resolved_at: Option<String>,
pub note: Option<String>,
}Expand description
Five independent observations. An absent timestamp means not observed,
never “assumed”: a cursor moving is not a person reading, and a host that
cannot confirm injection leaves presented_at null.
Fields§
§agent: String§session: Option<String>§address: String§stored_at: Option<String>§delivered_at: Option<String>§presented_at: Option<String>Null when the host cannot confirm the message reached the model. That is unknown, not “no”.
acknowledged_at: Option<String>§resolved_at: Option<String>The recipient said it acted on this. It does not complete a task or merge anything by itself.
note: Option<String>Trait Implementations§
Source§impl Clone for ReceiptInfo
impl Clone for ReceiptInfo
Source§impl Debug for ReceiptInfo
impl Debug for ReceiptInfo
Source§impl JsonSchema for ReceiptInfo
impl JsonSchema for ReceiptInfo
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for ReceiptInfo
impl RefUnwindSafe for ReceiptInfo
impl Send for ReceiptInfo
impl Sync for ReceiptInfo
impl Unpin for ReceiptInfo
impl UnsafeUnpin for ReceiptInfo
impl UnwindSafe for ReceiptInfo
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<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more