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