pub struct CreateContextBody {
pub id: String,
pub name: String,
pub description: Option<String>,
pub parent: Option<String>,
}Fields§
§id: StringLeaf segment when parent is set (full path = <parent>/<id>), else a
top-level segment.
name: String§description: Option<String>§parent: Option<String>Parent context path to nest under, or None for a top-level context.
Trait Implementations§
Source§impl Clone for CreateContextBody
impl Clone for CreateContextBody
Source§fn clone(&self) -> CreateContextBody
fn clone(&self) -> CreateContextBody
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 CreateContextBody
impl Debug for CreateContextBody
Source§impl<'de> Deserialize<'de> for CreateContextBody
impl<'de> Deserialize<'de> for CreateContextBody
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 CreateContextBody
impl RefUnwindSafe for CreateContextBody
impl Send for CreateContextBody
impl Sync for CreateContextBody
impl Unpin for CreateContextBody
impl UnsafeUnpin for CreateContextBody
impl UnwindSafe for CreateContextBody
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