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 Clone for SessionCommandsFinalizeInvocationEffectResult
impl Clone for SessionCommandsFinalizeInvocationEffectResult
Source§fn clone(&self) -> SessionCommandsFinalizeInvocationEffectResult
fn clone(&self) -> SessionCommandsFinalizeInvocationEffectResult
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 SessionCommandsFinalizeInvocationEffectResult
impl Default for SessionCommandsFinalizeInvocationEffectResult
Source§fn default() -> SessionCommandsFinalizeInvocationEffectResult
fn default() -> SessionCommandsFinalizeInvocationEffectResult
Returns the “default value” for a type. Read more
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