pub struct PostRetryResponse {
pub message: Option<String>,
pub post: Option<Box<Post>>,
}Fields§
§message: Option<String>§post: Option<Box<Post>>Implementations§
Source§impl PostRetryResponse
impl PostRetryResponse
pub fn new() -> PostRetryResponse
Trait Implementations§
Source§impl Clone for PostRetryResponse
impl Clone for PostRetryResponse
Source§fn clone(&self) -> PostRetryResponse
fn clone(&self) -> PostRetryResponse
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 PostRetryResponse
impl Debug for PostRetryResponse
Source§impl Default for PostRetryResponse
impl Default for PostRetryResponse
Source§fn default() -> PostRetryResponse
fn default() -> PostRetryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostRetryResponse
impl<'de> Deserialize<'de> for PostRetryResponse
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 PostRetryResponse
impl PartialEq for PostRetryResponse
Source§impl Serialize for PostRetryResponse
impl Serialize for PostRetryResponse
impl StructuralPartialEq for PostRetryResponse
Auto Trait Implementations§
impl Freeze for PostRetryResponse
impl RefUnwindSafe for PostRetryResponse
impl Send for PostRetryResponse
impl Sync for PostRetryResponse
impl Unpin for PostRetryResponse
impl UnsafeUnpin for PostRetryResponse
impl UnwindSafe for PostRetryResponse
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