pub struct UpdatePostRequest {
pub title: Option<String>,
pub content: Option<String>,
}Fields§
§title: Option<String>§content: Option<String>Trait Implementations§
Source§impl Clone for UpdatePostRequest
impl Clone for UpdatePostRequest
Source§fn clone(&self) -> UpdatePostRequest
fn clone(&self) -> UpdatePostRequest
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 UpdatePostRequest
impl Debug for UpdatePostRequest
Source§impl Default for UpdatePostRequest
impl Default for UpdatePostRequest
Source§fn default() -> UpdatePostRequest
fn default() -> UpdatePostRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatePostRequest
impl<'de> Deserialize<'de> for UpdatePostRequest
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 UpdatePostRequest
impl RefUnwindSafe for UpdatePostRequest
impl Send for UpdatePostRequest
impl Sync for UpdatePostRequest
impl Unpin for UpdatePostRequest
impl UnsafeUnpin for UpdatePostRequest
impl UnwindSafe for UpdatePostRequest
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