[][src]Struct transistor::client::Crux

pub struct Crux { /* fields omitted */ }

Struct to define parameters to connect to Crux host and port are required. authorization in HeaderMap is optional.

Implementations

impl Crux[src]

pub fn new(host: &str, port: &str) -> Self[src]

Define Crux instance with host:port

pub fn with_authorization(self, authorization: &str) -> Self[src]

Function to add AUTHORIZATION token to the Crux Client

pub fn http_client(&mut self) -> HttpClient[src]

To query database on Docker/standalone via http it is necessary to use HttpClient

Auto Trait Implementations

impl RefUnwindSafe for Crux

impl Send for Crux

impl Sync for Crux

impl Unpin for Crux

impl UnwindSafe for Crux

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.