[][src]Struct ipfs::UninitializedIpfs

pub struct UninitializedIpfs<Types: IpfsTypes> { /* fields omitted */ }

Configured Ipfs which can only be started.

Implementations

impl<Types: IpfsTypes> UninitializedIpfs<Types>[src]

pub fn new(options: IpfsOptions) -> Self[src]

Configures a new UninitializedIpfs with from the given options and optionally a span. If the span is not given, it is defaulted to tracing::trace_span!("ipfs").

The span is attached to all operations called on the later created Ipfs along with all operations done in the background task as well as tasks spawned by the underlying libp2p::Swarm.

pub async fn start(
    self
) -> Result<(Ipfs<Types>, impl Future<Output = ()>), Error>
[src]

Initialize the ipfs node. The returned Ipfs value is cloneable, send and sync, and the future should be spawned on a executor as soon as possible.

Auto Trait Implementations

impl<Types> !RefUnwindSafe for UninitializedIpfs<Types>

impl<Types> Send for UninitializedIpfs<Types> where
    <Types as RepoTypes>::TBlockStore: Send + Sync,
    <Types as RepoTypes>::TDataStore: Send + Sync

impl<Types> Sync for UninitializedIpfs<Types> where
    <Types as RepoTypes>::TBlockStore: Send + Sync,
    <Types as RepoTypes>::TDataStore: Send + Sync

impl<Types> Unpin for UninitializedIpfs<Types>

impl<Types> !UnwindSafe for UninitializedIpfs<Types>

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

impl<T> WithSubscriber for T[src]