Trait mz_fivetran_destination::error::Context
source · pub trait Context {
type TransformType;
// Required methods
fn context(self, context: &'static str) -> Self::TransformType;
fn with_context(self, f: impl FnOnce() -> String) -> Self::TransformType;
}
Required Associated Types§
type TransformType
Required Methods§
fn context(self, context: &'static str) -> Self::TransformType
fn with_context(self, f: impl FnOnce() -> String) -> Self::TransformType
Object Safety§
This trait is not object safe.