[][src]Struct pinata_sdk::TotalPinnedData

pub struct TotalPinnedData {
    pub pin_count: u128,
    pub pin_size_total: String,
    pub pin_size_with_replications_total: String,
}

Results of a call to get total users pinned data

Fields

pin_count: u128

The number of pins you currently have pinned with Pinata

pin_size_total: String

The total size of all unique content you have pinned with Pinata (expressed in bytes)

pin_size_with_replications_total: String

The total size of all content you have pinned with Pinata. This value is derived by multiplying the size of each piece of unique content by the number of times that content is replicated.

Trait Implementations

impl Debug for TotalPinnedData[src]

impl<'de> Deserialize<'de> for TotalPinnedData[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, 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.