pub struct SessionCommandsFinalizeInvocationEffectResult {
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 SessionCommandsFinalizeInvocationEffectResult
impl<'de> Deserialize<'de> for SessionCommandsFinalizeInvocationEffectResult
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 SessionCommandsFinalizeInvocationEffectResult
impl RefUnwindSafe for SessionCommandsFinalizeInvocationEffectResult
impl Send for SessionCommandsFinalizeInvocationEffectResult
impl Sync for SessionCommandsFinalizeInvocationEffectResult
impl Unpin for SessionCommandsFinalizeInvocationEffectResult
impl UnsafeUnpin for SessionCommandsFinalizeInvocationEffectResult
impl UnwindSafe for SessionCommandsFinalizeInvocationEffectResult
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