pub struct SetNodeValueParams {
pub node_id: Box<NodeId>,
pub value: String,
}Expand description
Sets node value for a node with given id. setNodeValue
Fields§
§node_id: Box<NodeId>Id of the node to set value for.
value: StringNew node’s value.
Implementations§
Trait Implementations§
Source§impl Clone for SetNodeValueParams
impl Clone for SetNodeValueParams
Source§fn clone(&self) -> SetNodeValueParams
fn clone(&self) -> SetNodeValueParams
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 SetNodeValueParams
impl Debug for SetNodeValueParams
Source§impl<'de> Deserialize<'de> for SetNodeValueParams
impl<'de> Deserialize<'de> for SetNodeValueParams
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 PartialEq for SetNodeValueParams
impl PartialEq for SetNodeValueParams
Source§impl Serialize for SetNodeValueParams
impl Serialize for SetNodeValueParams
impl StructuralPartialEq for SetNodeValueParams
Auto Trait Implementations§
impl Freeze for SetNodeValueParams
impl RefUnwindSafe for SetNodeValueParams
impl Send for SetNodeValueParams
impl Sync for SetNodeValueParams
impl Unpin for SetNodeValueParams
impl UnsafeUnpin for SetNodeValueParams
impl UnwindSafe for SetNodeValueParams
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