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