pub struct NodeBodyUpdate {
pub name: Option<String>,
pub node_type: Option<String>,
pub aspect_names: Option<Vec<String>>,
pub properties: Option<HashMap<String, String>>,
pub permissions: Option<PermissionsBody>,
}
Fields§
§name: Option<String>
§node_type: Option<String>
§aspect_names: Option<Vec<String>>
§properties: Option<HashMap<String, String>>
§permissions: Option<PermissionsBody>
Trait Implementations§
Source§impl Clone for NodeBodyUpdate
impl Clone for NodeBodyUpdate
Source§fn clone(&self) -> NodeBodyUpdate
fn clone(&self) -> NodeBodyUpdate
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 NodeBodyUpdate
impl Debug for NodeBodyUpdate
Source§impl<'de> Deserialize<'de> for NodeBodyUpdate
impl<'de> Deserialize<'de> for NodeBodyUpdate
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 NodeBodyUpdate
impl RefUnwindSafe for NodeBodyUpdate
impl Send for NodeBodyUpdate
impl Sync for NodeBodyUpdate
impl Unpin for NodeBodyUpdate
impl UnwindSafe for NodeBodyUpdate
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