pub trait OpenWhisk {
type Output;
// Required method
fn new_whisk_client(insecure: Option<bool>) -> Self::Output;
}
Expand description
Trait OpenWhisk
Required Associated Types§
Required Methods§
Sourcefn new_whisk_client(insecure: Option<bool>) -> Self::Output
fn new_whisk_client(insecure: Option<bool>) -> Self::Output
Creates a new OpenWhisk client
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.