[][src]Struct pinata_sdk::PinJobs

pub struct PinJobs {
    pub count: u64,
    pub rows: Vec<PinJob>,
}

Represents a list of pin job records for a set of filters.

Fields

count: u64

Total number of pin job records that exist for the PinJobsFilter used

rows: Vec<PinJob>

Each item in the rows represents a pin job record

Trait Implementations

impl Debug for PinJobs[src]

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

Auto Trait Implementations

impl RefUnwindSafe for PinJobs

impl Send for PinJobs

impl Sync for PinJobs

impl Unpin for PinJobs

impl UnwindSafe for PinJobs

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