pub struct BundleStatus {
pub bundle_id: String,
pub transactions: Option<Vec<String>>,
pub slot: Option<u64>,
pub confirmation_status: Option<String>,
pub err: Option<Value>,
}Fields§
§bundle_id: String§transactions: Option<Vec<String>>§slot: Option<u64>§confirmation_status: Option<String>§err: Option<Value>Trait Implementations§
Source§impl Debug for BundleStatus
impl Debug for BundleStatus
Source§impl<'de> Deserialize<'de> for BundleStatus
impl<'de> Deserialize<'de> for BundleStatus
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 BundleStatus
impl RefUnwindSafe for BundleStatus
impl Send for BundleStatus
impl Sync for BundleStatus
impl Unpin for BundleStatus
impl UnwindSafe for BundleStatus
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