pub struct NodeOpResponse {
pub ok: bool,
pub error: Option<String>,
}Expand description
Generic response for node write, execute, and acquisition control.
Fields§
§ok: bool§error: Option<String>Trait Implementations§
Source§impl Clone for NodeOpResponse
impl Clone for NodeOpResponse
Source§fn clone(&self) -> NodeOpResponse
fn clone(&self) -> NodeOpResponse
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 NodeOpResponse
impl Debug for NodeOpResponse
Source§impl<'de> Deserialize<'de> for NodeOpResponse
impl<'de> Deserialize<'de> for NodeOpResponse
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 NodeOpResponse
impl RefUnwindSafe for NodeOpResponse
impl Send for NodeOpResponse
impl Sync for NodeOpResponse
impl Unpin for NodeOpResponse
impl UnsafeUnpin for NodeOpResponse
impl UnwindSafe for NodeOpResponse
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