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<'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