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 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.