[][src]Enum pinata_sdk::JobStatus

pub enum JobStatus {
    Prechecking,
    Searching,
    Retrieving,
    Expired,
    OverFreeLimit,
    OverMaxSize,
    InvalidObject,
    BadHostNode,
}

Status of Jobs

Variants

Prechecking

Pinata is running preliminary validations on your pin request.

Searching

Pinata is actively searching for your content on the IPFS network.

Retrieving

Pinata has located your content and is now in the process of retrieving it.

Expired

Pinata wasn't able to find your content after a day of searching the IPFS network.

OverFreeLimit

Pinning this object would put you over the free tier limit. Please add a credit card to continue.

OverMaxSize

This object is too large of an item to pin. If you're seeing this, please contact pinata for a more custom solution.

InvalidObject

The object you're attempting to pin isn't readable by IPFS nodes.

BadHostNode

You provided a host node that was either invalid or unreachable.

Trait Implementations

impl Clone for JobStatus[src]

impl Debug for JobStatus[src]

impl<'de> Deserialize<'de> for JobStatus[src]

impl Serialize for JobStatus[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.