pub struct UpdatePathBody {
pub is_public: Option<bool>,
}Expand description
UpdatePathBody
JSON schema
{
"type": "object",
"properties": {
"is_public": {
"type": [
"boolean",
"null"
]
}
}
}Fields§
§is_public: Option<bool>Trait Implementations§
Source§impl Clone for UpdatePathBody
impl Clone for UpdatePathBody
Source§fn clone(&self) -> UpdatePathBody
fn clone(&self) -> UpdatePathBody
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 UpdatePathBody
impl Debug for UpdatePathBody
Source§impl Default for UpdatePathBody
impl Default for UpdatePathBody
Source§impl<'de> Deserialize<'de> for UpdatePathBody
impl<'de> Deserialize<'de> for UpdatePathBody
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 UpdatePathBody
impl RefUnwindSafe for UpdatePathBody
impl Send for UpdatePathBody
impl Sync for UpdatePathBody
impl Unpin for UpdatePathBody
impl UnsafeUnpin for UpdatePathBody
impl UnwindSafe for UpdatePathBody
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