pub struct UpdateStorySendFailed {
pub story: Story,
pub error: Error,
pub error_type: Option<CanSendStoryResult>,
}
Expand description
A story failed to send. If the story sending is canceled, then updateStoryDeleted will be received instead of this update
Fields§
§story: Story
The failed to send story
error: Error
The cause of the story sending failure
error_type: Option<CanSendStoryResult>
Type of the error; may be null if unknown
Trait Implementations§
Source§impl Clone for UpdateStorySendFailed
impl Clone for UpdateStorySendFailed
Source§fn clone(&self) -> UpdateStorySendFailed
fn clone(&self) -> UpdateStorySendFailed
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 UpdateStorySendFailed
impl Debug for UpdateStorySendFailed
Source§impl<'de> Deserialize<'de> for UpdateStorySendFailed
impl<'de> Deserialize<'de> for UpdateStorySendFailed
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 UpdateStorySendFailed
impl PartialEq for UpdateStorySendFailed
Source§impl Serialize for UpdateStorySendFailed
impl Serialize for UpdateStorySendFailed
impl StructuralPartialEq for UpdateStorySendFailed
Auto Trait Implementations§
impl Freeze for UpdateStorySendFailed
impl RefUnwindSafe for UpdateStorySendFailed
impl Send for UpdateStorySendFailed
impl Sync for UpdateStorySendFailed
impl Unpin for UpdateStorySendFailed
impl UnwindSafe for UpdateStorySendFailed
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