pub struct SetNodeValueParams {
pub nodeId: NodeId,
pub value: String,
}Expand description
Sets node value for a node with given id.
Fields§
§nodeId: NodeIdId of the node to set value for.
value: StringNew node’s value.
Implementations§
Trait Implementations§
Source§impl CdpCommand for SetNodeValueParams
impl CdpCommand for SetNodeValueParams
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 Default for SetNodeValueParams
impl Default for SetNodeValueParams
Source§fn default() -> SetNodeValueParams
fn default() -> SetNodeValueParams
Returns the “default value” for a type. Read more
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
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