pub struct QueueInfo {
pub queued_ingestion: String,
pub waiting_on_ingestion: String,
}
Expand description
Information about a queued dataset SPICE ingestion.
Fields§
§queued_ingestion: String
The ID of the ongoing ingestion. The queued ingestion is waiting for the ongoing ingestion to complete.
waiting_on_ingestion: String
The ID of the queued ingestion.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for QueueInfo
impl<'de> Deserialize<'de> for QueueInfo
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
impl StructuralPartialEq for QueueInfo
Auto Trait Implementations§
impl Freeze for QueueInfo
impl RefUnwindSafe for QueueInfo
impl Send for QueueInfo
impl Sync for QueueInfo
impl Unpin for QueueInfo
impl UnwindSafe for QueueInfo
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