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

Implementors§