Struct algonaut::Kmd[][src]

pub struct Kmd<'a> { /* fields omitted */ }

Kmd is the entry point to the creation of a client for the Algorand key management daemon.

use algonaut_client::Kmd;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let algod = Kmd::new()
        .bind("http://localhost:4001")
        .auth("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")
        .client_v1()?;

    println!("Algod versions: {:?}", algod.versions()?.versions);

    Ok(())
}

Implementations

impl<'a> Kmd<'a>[src]

pub fn new() -> Kmd<'a>[src]

Start the creation of a client.

pub fn bind(self, url: &'a str) -> Kmd<'a>[src]

Bind to a URL.

pub fn auth(self, token: &'a str) -> Kmd<'a>[src]

Use a token to authenticate.

pub fn client_v1(self) -> Result<Client, AlgorandError>[src]

Build a v1 client for Algorand protocol daemon.

Trait Implementations

impl<'a> Default for Kmd<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Kmd<'a>

impl<'a> Send for Kmd<'a>

impl<'a> Sync for Kmd<'a>

impl<'a> Unpin for Kmd<'a>

impl<'a> UnwindSafe for Kmd<'a>

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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,