pub struct WireResult {
pub action_id: Option<String>,
pub output: Option<Value>,
pub error: Option<String>,
}Expand description
Result of a Wire (Holocron) action execution.
Fields§
§action_id: Option<String>§output: Option<Value>§error: Option<String>Trait Implementations§
Source§impl Clone for WireResult
impl Clone for WireResult
Source§fn clone(&self) -> WireResult
fn clone(&self) -> WireResult
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 WireResult
impl Debug for WireResult
Source§impl Default for WireResult
impl Default for WireResult
Source§fn default() -> WireResult
fn default() -> WireResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WireResult
impl<'de> Deserialize<'de> for WireResult
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 WireResult
impl RefUnwindSafe for WireResult
impl Send for WireResult
impl Sync for WireResult
impl Unpin for WireResult
impl UnsafeUnpin for WireResult
impl UnwindSafe for WireResult
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