pub struct E2eConfig {
pub postgres_url: String,
pub kafka_broker: String,
pub schema_registry_url: String,
pub clickhouse_url: String,
pub mysql_url: Option<String>,
pub prometheus_url: Option<String>,
pub sqs_url: Option<String>,
pub streamling_bin: Option<PathBuf>,
}Expand description
Configuration for the e2e test environment
Fields§
§postgres_url: String§kafka_broker: String§schema_registry_url: String§clickhouse_url: String§mysql_url: Option<String>§prometheus_url: Option<String>§sqs_url: Option<String>§streamling_bin: Option<PathBuf>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for E2eConfig
impl RefUnwindSafe for E2eConfig
impl Send for E2eConfig
impl Sync for E2eConfig
impl Unpin for E2eConfig
impl UnsafeUnpin for E2eConfig
impl UnwindSafe for E2eConfig
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 moreCreates a shared type from an unshared type.