pub struct UpdateGraphPathBody {
pub visibility: Option<Visibility>,
}Expand description
UpdateGraphPathBody
JSON schema
{
"type": "object",
"properties": {
"visibility": {
"oneOf": [
{
"type": "null"
},
{
"allOf": [
{
"$ref": "#/components/schemas/Visibility"
}
]
}
]
}
},
"additionalProperties": false
}Fields§
§visibility: Option<Visibility>Trait Implementations§
Source§impl Clone for UpdateGraphPathBody
impl Clone for UpdateGraphPathBody
Source§fn clone(&self) -> UpdateGraphPathBody
fn clone(&self) -> UpdateGraphPathBody
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 UpdateGraphPathBody
impl Debug for UpdateGraphPathBody
Source§impl Default for UpdateGraphPathBody
impl Default for UpdateGraphPathBody
Source§impl<'de> Deserialize<'de> for UpdateGraphPathBody
impl<'de> Deserialize<'de> for UpdateGraphPathBody
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 UpdateGraphPathBody
impl RefUnwindSafe for UpdateGraphPathBody
impl Send for UpdateGraphPathBody
impl Sync for UpdateGraphPathBody
impl Unpin for UpdateGraphPathBody
impl UnsafeUnpin for UpdateGraphPathBody
impl UnwindSafe for UpdateGraphPathBody
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