pub struct PendingFlight {
pub body: String,
pub flags: Option<Vec<FlagValue>>,
pub flight_id: String,
pub itinerary_id: String,
pub pipeline: Option<String>,
pub queued_at: String,
pub to: String,
}Expand description
A flight that has been asked for and not yet dispatched.
Fields§
§body: StringThe prompt the run will be given.
flags: Option<Vec<FlagValue>>The flags set for this run.
flight_id: StringIdentifier of the queued flight.
itinerary_id: StringThe chain it will begin.
pipeline: Option<String>The pipeline it was triggered through, when one was named.
queued_at: StringWhen it was asked for.
to: StringThe agent it is addressed to.
Trait Implementations§
Source§impl Clone for PendingFlight
impl Clone for PendingFlight
Source§impl Debug for PendingFlight
impl Debug for PendingFlight
Source§impl<'de> Deserialize<'de> for PendingFlight
impl<'de> Deserialize<'de> for PendingFlight
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
Source§impl PartialEq for PendingFlight
impl PartialEq for PendingFlight
Source§impl Serialize for PendingFlight
impl Serialize for PendingFlight
impl StructuralPartialEq for PendingFlight
Auto Trait Implementations§
impl Freeze for PendingFlight
impl RefUnwindSafe for PendingFlight
impl Send for PendingFlight
impl Sync for PendingFlight
impl Unpin for PendingFlight
impl UnsafeUnpin for PendingFlight
impl UnwindSafe for PendingFlight
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