[][src]Struct katalyst::Katalyst

pub struct Katalyst { /* fields omitted */ }

This is the API Gateway container

Methods

impl Katalyst[src]

pub fn new() -> Self[src]

Create a new Katalyst instance

pub fn update_state(&self, new_state: Gateway)[src]

Update the running configuration of the API Gateway.

pub fn get_state(&self) -> Gateway[src]

Get a copy of the currently running API Gateway configuration. Will panic if the configuration has not yet been loaded.

pub fn load(&self, config_file: &str)[src]

Load a configuration file

pub fn run(&self)[src]

Start the API Gateway

Auto Trait Implementations

impl Send for Katalyst

impl Sync for Katalyst

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T