pub struct CancelScheduledMessageResponse {
pub id: String,
pub status: ScheduledMessageStatus,
pub credits_refunded: i32,
}Expand description
Response from cancelling a scheduled message.
Fields§
§id: StringScheduled message ID.
status: ScheduledMessageStatusNew status (cancelled).
credits_refunded: i32Credits refunded.
Trait Implementations§
Source§impl Clone for CancelScheduledMessageResponse
impl Clone for CancelScheduledMessageResponse
Source§fn clone(&self) -> CancelScheduledMessageResponse
fn clone(&self) -> CancelScheduledMessageResponse
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<'de> Deserialize<'de> for CancelScheduledMessageResponse
impl<'de> Deserialize<'de> for CancelScheduledMessageResponse
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
Auto Trait Implementations§
impl Freeze for CancelScheduledMessageResponse
impl RefUnwindSafe for CancelScheduledMessageResponse
impl Send for CancelScheduledMessageResponse
impl Sync for CancelScheduledMessageResponse
impl Unpin for CancelScheduledMessageResponse
impl UnsafeUnpin for CancelScheduledMessageResponse
impl UnwindSafe for CancelScheduledMessageResponse
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