pub struct ActionPhase {
pub success: bool,
pub result_code: i32,
pub total_actions: i32,
pub skipped_actions: i32,
pub fwd_fees: i64,
pub total_fees: i64,
pub result_code_description: Option<String>,
}
Fields§
§success: bool
§result_code: i32
§total_actions: i32
§skipped_actions: i32
§fwd_fees: i64
§total_fees: i64
§result_code_description: Option<String>
Trait Implementations§
Source§impl Debug for ActionPhase
impl Debug for ActionPhase
Source§impl<'de> Deserialize<'de> for ActionPhase
impl<'de> Deserialize<'de> for ActionPhase
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 ActionPhase
impl RefUnwindSafe for ActionPhase
impl Send for ActionPhase
impl Sync for ActionPhase
impl Unpin for ActionPhase
impl UnwindSafe for ActionPhase
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