pub struct InflightBundleStatus {
pub bundle_id: String,
pub status: String,
pub landed_slot: Option<u64>,
}Expand description
Represents in-flight bundle status.
Fields§
§bundle_id: String§status: String§landed_slot: Option<u64>Trait Implementations§
Source§impl Debug for InflightBundleStatus
impl Debug for InflightBundleStatus
Source§impl<'de> Deserialize<'de> for InflightBundleStatus
impl<'de> Deserialize<'de> for InflightBundleStatus
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 InflightBundleStatus
impl RefUnwindSafe for InflightBundleStatus
impl Send for InflightBundleStatus
impl Sync for InflightBundleStatus
impl Unpin for InflightBundleStatus
impl UnwindSafe for InflightBundleStatus
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