pub struct TotalPinnedData {
pub pin_count: u128,
pub pin_size_total: String,
pub pin_size_with_replications_total: String,
}Expand description
Results of a call to get total users pinned data
Fields§
§pin_count: u128The number of pins you currently have pinned with Pinata
pin_size_total: StringThe total size of all unique content you have pinned with Pinata (expressed in bytes)
pin_size_with_replications_total: StringThe 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§
Source§impl Debug for TotalPinnedData
impl Debug for TotalPinnedData
Source§impl<'de> Deserialize<'de> for TotalPinnedData
impl<'de> Deserialize<'de> for TotalPinnedData
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 TotalPinnedData
impl RefUnwindSafe for TotalPinnedData
impl Send for TotalPinnedData
impl Sync for TotalPinnedData
impl Unpin for TotalPinnedData
impl UnwindSafe for TotalPinnedData
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