pub struct UpdateStoryPostFailed {
pub story: Story,
pub error: Error,
pub error_type: Option<CanPostStoryResult>,
}Expand description
A story failed to post. If the story posting is canceled, then updateStoryDeleted will be received instead of this update
Fields§
§story: StoryThe failed to post story
error: ErrorThe cause of the story posting failure
error_type: Option<CanPostStoryResult>Type of the error; may be null if unknown
Trait Implementations§
Source§impl Clone for UpdateStoryPostFailed
impl Clone for UpdateStoryPostFailed
Source§fn clone(&self) -> UpdateStoryPostFailed
fn clone(&self) -> UpdateStoryPostFailed
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateStoryPostFailed
impl Debug for UpdateStoryPostFailed
Source§impl<'de> Deserialize<'de> for UpdateStoryPostFailed
impl<'de> Deserialize<'de> for UpdateStoryPostFailed
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 UpdateStoryPostFailed
impl PartialEq for UpdateStoryPostFailed
Source§fn eq(&self, other: &UpdateStoryPostFailed) -> bool
fn eq(&self, other: &UpdateStoryPostFailed) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateStoryPostFailed
impl Serialize for UpdateStoryPostFailed
impl StructuralPartialEq for UpdateStoryPostFailed
Auto Trait Implementations§
impl Freeze for UpdateStoryPostFailed
impl RefUnwindSafe for UpdateStoryPostFailed
impl Send for UpdateStoryPostFailed
impl Sync for UpdateStoryPostFailed
impl Unpin for UpdateStoryPostFailed
impl UnsafeUnpin for UpdateStoryPostFailed
impl UnwindSafe for UpdateStoryPostFailed
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