pub struct UpdatePageResponse {
pub ok: bool,
}Expand description
UpdatePageResponse
JSON schema
{
"type": "object",
"required": [
"ok"
],
"properties": {
"ok": {
"type": "boolean"
}
}
}Fields§
§ok: boolImplementations§
Source§impl UpdatePageResponse
impl UpdatePageResponse
pub fn builder() -> UpdatePageResponse
Trait Implementations§
Source§impl Clone for UpdatePageResponse
impl Clone for UpdatePageResponse
Source§fn clone(&self) -> UpdatePageResponse
fn clone(&self) -> UpdatePageResponse
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 UpdatePageResponse
impl Debug for UpdatePageResponse
Source§impl<'de> Deserialize<'de> for UpdatePageResponse
impl<'de> Deserialize<'de> for UpdatePageResponse
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 From<&UpdatePageResponse> for UpdatePageResponse
impl From<&UpdatePageResponse> for UpdatePageResponse
Source§fn from(value: &UpdatePageResponse) -> Self
fn from(value: &UpdatePageResponse) -> Self
Converts to this type from the input type.
Source§impl From<UpdatePageResponse> for UpdatePageResponse
impl From<UpdatePageResponse> for UpdatePageResponse
Source§fn from(value: UpdatePageResponse) -> Self
fn from(value: UpdatePageResponse) -> Self
Converts to this type from the input type.
Source§impl Serialize for UpdatePageResponse
impl Serialize for UpdatePageResponse
Source§impl TryFrom<UpdatePageResponse> for UpdatePageResponse
impl TryFrom<UpdatePageResponse> for UpdatePageResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: UpdatePageResponse) -> Result<Self, ConversionError>
fn try_from(value: UpdatePageResponse) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for UpdatePageResponse
impl RefUnwindSafe for UpdatePageResponse
impl Send for UpdatePageResponse
impl Sync for UpdatePageResponse
impl Unpin for UpdatePageResponse
impl UnsafeUnpin for UpdatePageResponse
impl UnwindSafe for UpdatePageResponse
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