pub struct StreamExecuteRequest {
pub flow_name: String,
pub backend: String,
pub request_body: Option<Value>,
pub request_path: HashMap<String, String>,
pub request_query: HashMap<String, String>,
}Expand description
Request for streaming execution.
Fields§
§flow_name: StringFlow name to execute.
backend: StringBackend (default “stub”).
request_body: Option<Value>§Fase 37.b (D1) — the parsed HTTP request body, carried so the
flow’s declared parameters bind from it (the Request Binding
Contract). #[serde(default)] ⇒ None for a /v1/execute/sse
direct hit that sends only {flow_name, backend} (D5).
request_path: HashMap<String, String>§Fase 37.y (D3) — URL path captures (same shape as
ExecuteRequest.request_path).
request_query: HashMap<String, String>§Fase 37.y (D3) — URL query string parsed name → value.
Trait Implementations§
Source§impl Debug for StreamExecuteRequest
impl Debug for StreamExecuteRequest
Source§impl<'de> Deserialize<'de> for StreamExecuteRequest
impl<'de> Deserialize<'de> for StreamExecuteRequest
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 StreamExecuteRequest
impl RefUnwindSafe for StreamExecuteRequest
impl Send for StreamExecuteRequest
impl Sync for StreamExecuteRequest
impl Unpin for StreamExecuteRequest
impl UnsafeUnpin for StreamExecuteRequest
impl UnwindSafe for StreamExecuteRequest
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
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.