pub struct RunEventsQuery {
pub types: Option<Vec<String>>,
}Expand description
Query parameters for the per-run SSE events endpoint.
§Examples
use ironflow_api::routes::run_events::RunEventsQuery;
let query = RunEventsQuery { types: None };Fields§
§types: Option<Vec<String>>Comma-separated list of workflow event types to include
(e.g. ?types=step_started,step_completed).
Trait Implementations§
Source§impl Debug for RunEventsQuery
impl Debug for RunEventsQuery
Source§impl<'de> Deserialize<'de> for RunEventsQuery
impl<'de> Deserialize<'de> for RunEventsQuery
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 RunEventsQuery
impl RefUnwindSafe for RunEventsQuery
impl Send for RunEventsQuery
impl Sync for RunEventsQuery
impl Unpin for RunEventsQuery
impl UnsafeUnpin for RunEventsQuery
impl UnwindSafe for RunEventsQuery
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