pub enum JobStatus {
Prechecking,
Searching,
Retrieving,
Expired,
OverFreeLimit,
OverMaxSize,
InvalidObject,
BadHostNode,
}Expand description
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§
Source§impl<'de> Deserialize<'de> for JobStatus
impl<'de> Deserialize<'de> for JobStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for JobStatus
impl RefUnwindSafe for JobStatus
impl Send for JobStatus
impl Sync for JobStatus
impl Unpin for JobStatus
impl UnwindSafe for JobStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more