[][src]Struct fie::api::API

pub struct API { /* fields omitted */ }

API access

Methods

impl API[src]

pub fn new(settings: Settings) -> Self[src]

Creates new API access module by reading configuration data.

pub fn configure<T: ApiEnabler>(&mut self, config: T) -> Result<(), ApiError>[src]

Configures specified API by providing it configuration

Does nothing if already enabled

pub fn enable<T: ApiEnabler>(&mut self, api: Option<T::ApiType>)[src]

Enables specified API by providing it back

pub fn disable<T: ApiEnabler>(&mut self) -> Option<T::ApiType>[src]

Disables specified API by taking it

pub fn send(&self, post: Post) -> Result<PostResult, ApiError>[src]

Sends Post to enabled APIs (blocking)

Auto Trait Implementations

impl !Send for API

impl !Sync for API

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

impl<T> Erased for T