pub struct MockIntegrationGenerator;Expand description
Generates k6 JavaScript code for mock server integration
Implementations§
Source§impl MockIntegrationGenerator
impl MockIntegrationGenerator
Sourcepub fn generate_setup(config: &MockIntegrationConfig) -> String
pub fn generate_setup(config: &MockIntegrationConfig) -> String
Generate k6 setup code for mock server
Sourcepub fn generate_teardown(config: &MockIntegrationConfig) -> String
pub fn generate_teardown(config: &MockIntegrationConfig) -> String
Generate k6 teardown code for collecting mock server metrics
Sourcepub fn generate_vu_id_helper() -> String
pub fn generate_vu_id_helper() -> String
Generate k6 code for VU-based consistent IDs
Sourcepub fn generate_health_check() -> String
pub fn generate_health_check() -> String
Generate k6 code for mock server health check
Auto Trait Implementations§
impl Freeze for MockIntegrationGenerator
impl RefUnwindSafe for MockIntegrationGenerator
impl Send for MockIntegrationGenerator
impl Sync for MockIntegrationGenerator
impl Unpin for MockIntegrationGenerator
impl UnwindSafe for MockIntegrationGenerator
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> 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