[][src]Struct iprs::ipfsd::Ipfsd

pub struct Ipfsd { /* fields omitted */ }

Ipfs daemon.

Implementations

impl Ipfsd[src]

pub fn spawn() -> Result<Ipfsd>[src]

Create a daemon, using asynchronous channel with infinite buffer.

pub fn to_client(&self) -> Client[src]

Return a sender channel.

pub fn close_wait(self) -> Result<()>[src]

Recommended call to exit and shutdown the daemon.

Trait Implementations

impl Drop for Ipfsd[src]

Auto Trait Implementations

impl !RefUnwindSafe for Ipfsd

impl Send for Ipfsd

impl Sync for Ipfsd

impl Unpin for Ipfsd

impl !UnwindSafe for Ipfsd

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