pub struct CloudCrudFlowInputs {
pub spec_bytes: Vec<u8>,
pub spec_format: SpecFormat,
pub target_url: String,
pub base_path: Option<String>,
pub duration: String,
pub vus: u32,
pub scenario: String,
pub flow_config_yaml: Option<String>,
pub extract_fields: Option<String>,
pub auth: Option<String>,
pub headers: Option<String>,
pub skip_tls_verify: bool,
}Expand description
Inputs for run_crud_flow — CRUD chain testing (Create → Read → Update →
Delete sequences with cross-step ID extraction).
When flow_config_yaml is None, flows are auto-detected from the spec.
When provided, the YAML follows the schema understood by CrudFlowConfig.
Fields§
§spec_bytes: Vec<u8>§spec_format: SpecFormat§target_url: String§base_path: Option<String>§duration: String§vus: u32§scenario: String§flow_config_yaml: Option<String>Inline YAML defining custom flows. When None, flows are auto-detected
from the OpenAPI spec.
extract_fields: Option<String>Comma-separated response fields to extract for cross-step references
(e.g. "id,user_id").
auth: Option<String>§headers: Option<String>§skip_tls_verify: boolTrait Implementations§
Source§impl Clone for CloudCrudFlowInputs
impl Clone for CloudCrudFlowInputs
Source§fn clone(&self) -> CloudCrudFlowInputs
fn clone(&self) -> CloudCrudFlowInputs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CloudCrudFlowInputs
impl Debug for CloudCrudFlowInputs
Auto Trait Implementations§
impl Freeze for CloudCrudFlowInputs
impl RefUnwindSafe for CloudCrudFlowInputs
impl Send for CloudCrudFlowInputs
impl Sync for CloudCrudFlowInputs
impl Unpin for CloudCrudFlowInputs
impl UnsafeUnpin for CloudCrudFlowInputs
impl UnwindSafe for CloudCrudFlowInputs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more