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