pub struct SendOutcome {
pub id: String,
}Expand description
Result of a successful send.
The id is an opaque, backend-assigned identifier. Do not parse
it; use it only as a correlation handle (logs, webhook matching,
idempotency keys).
Fields§
§id: StringBackend-assigned message id.
Trait Implementations§
Source§impl Clone for SendOutcome
impl Clone for SendOutcome
Source§fn clone(&self) -> SendOutcome
fn clone(&self) -> SendOutcome
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 SendOutcome
impl Debug for SendOutcome
Source§impl<'de> Deserialize<'de> for SendOutcome
impl<'de> Deserialize<'de> for SendOutcome
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 SendOutcome
impl PartialEq for SendOutcome
Source§impl Serialize for SendOutcome
impl Serialize for SendOutcome
impl Eq for SendOutcome
impl StructuralPartialEq for SendOutcome
Auto Trait Implementations§
impl Freeze for SendOutcome
impl RefUnwindSafe for SendOutcome
impl Send for SendOutcome
impl Sync for SendOutcome
impl Unpin for SendOutcome
impl UnsafeUnpin for SendOutcome
impl UnwindSafe for SendOutcome
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