Trait OpenWhisk

Source
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§

Source

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.

Implementors§