pub struct SendResultOutput {
pub ok: bool,
pub channel: String,
pub channel_type: String,
pub id: Option<String>,
pub sent: bool,
pub dry_run: bool,
pub attachments: Option<Vec<StoredAttachment>>,
pub error: Option<ErrorBody>,
}Fields§
§ok: bool§channel: String§channel_type: String§id: Option<String>§sent: bool§dry_run: bool§attachments: Option<Vec<StoredAttachment>>§error: Option<ErrorBody>Trait Implementations§
Source§impl Debug for SendResultOutput
impl Debug for SendResultOutput
Auto Trait Implementations§
impl Freeze for SendResultOutput
impl RefUnwindSafe for SendResultOutput
impl Send for SendResultOutput
impl Sync for SendResultOutput
impl Unpin for SendResultOutput
impl UnsafeUnpin for SendResultOutput
impl UnwindSafe for SendResultOutput
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