pub struct NearbyInventoryItem {
pub id: String,
pub author: Option<String>,
pub kind: u64,
pub created_at: u64,
pub size: u64,
}Fields§
§id: String§kind: u64§created_at: u64§size: u64Trait Implementations§
Source§impl Clone for NearbyInventoryItem
impl Clone for NearbyInventoryItem
Source§fn clone(&self) -> NearbyInventoryItem
fn clone(&self) -> NearbyInventoryItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NearbyInventoryItem
impl Debug for NearbyInventoryItem
Source§impl<'de> Deserialize<'de> for NearbyInventoryItem
impl<'de> Deserialize<'de> for NearbyInventoryItem
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
impl Eq for NearbyInventoryItem
Source§impl PartialEq for NearbyInventoryItem
impl PartialEq for NearbyInventoryItem
Source§fn eq(&self, other: &NearbyInventoryItem) -> bool
fn eq(&self, other: &NearbyInventoryItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NearbyInventoryItem
impl Serialize for NearbyInventoryItem
impl StructuralPartialEq for NearbyInventoryItem
Auto Trait Implementations§
impl Freeze for NearbyInventoryItem
impl RefUnwindSafe for NearbyInventoryItem
impl Send for NearbyInventoryItem
impl Sync for NearbyInventoryItem
impl Unpin for NearbyInventoryItem
impl UnsafeUnpin for NearbyInventoryItem
impl UnwindSafe for NearbyInventoryItem
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