pub struct CommandsFinalizeInvocationEffectResult {
pub error: Option<String>,
pub success: bool,
}Expand description
Whether finalizing the invocation effect succeeded, and the failure reason when it did not.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§error: Option<String>Failure reason when the invocation effect could not be finalized.
success: boolWhether the pending invocation effect was finalized successfully.
Trait Implementations§
Source§impl Clone for CommandsFinalizeInvocationEffectResult
impl Clone for CommandsFinalizeInvocationEffectResult
Source§fn clone(&self) -> CommandsFinalizeInvocationEffectResult
fn clone(&self) -> CommandsFinalizeInvocationEffectResult
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 Default for CommandsFinalizeInvocationEffectResult
impl Default for CommandsFinalizeInvocationEffectResult
Source§fn default() -> CommandsFinalizeInvocationEffectResult
fn default() -> CommandsFinalizeInvocationEffectResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CommandsFinalizeInvocationEffectResult
impl<'de> Deserialize<'de> for CommandsFinalizeInvocationEffectResult
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 CommandsFinalizeInvocationEffectResult
impl RefUnwindSafe for CommandsFinalizeInvocationEffectResult
impl Send for CommandsFinalizeInvocationEffectResult
impl Sync for CommandsFinalizeInvocationEffectResult
impl Unpin for CommandsFinalizeInvocationEffectResult
impl UnsafeUnpin for CommandsFinalizeInvocationEffectResult
impl UnwindSafe for CommandsFinalizeInvocationEffectResult
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