pub trait Inner<I>: Defaultwhere
I: Inner,{
// Required method
fn build(self) -> Result<I, BuildError>;
}
Expand description
An inner SAM header map value builder.
Required Methods§
Sourcefn build(self) -> Result<I, BuildError>
fn build(self) -> Result<I, BuildError>
Builds the SAM header map value.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.