pub struct ShipLockerEntry {
pub name: Item,
pub name_localized: Option<String>,
pub owner_id: u64,
pub count: u16,
}
Fields§
§name: Item
§name_localized: Option<String>
§owner_id: u64
§count: u16
Trait Implementations§
Source§impl Clone for ShipLockerEntry
impl Clone for ShipLockerEntry
Source§fn clone(&self) -> ShipLockerEntry
fn clone(&self) -> ShipLockerEntry
Returns a copy of the value. Read more
1.0.0 · 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 ShipLockerEntry
impl Debug for ShipLockerEntry
Source§impl<'de> Deserialize<'de> for ShipLockerEntry
impl<'de> Deserialize<'de> for ShipLockerEntry
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
Source§impl PartialEq for ShipLockerEntry
impl PartialEq for ShipLockerEntry
Source§impl Serialize for ShipLockerEntry
impl Serialize for ShipLockerEntry
impl StructuralPartialEq for ShipLockerEntry
Auto Trait Implementations§
impl Freeze for ShipLockerEntry
impl RefUnwindSafe for ShipLockerEntry
impl Send for ShipLockerEntry
impl Sync for ShipLockerEntry
impl Unpin for ShipLockerEntry
impl UnwindSafe for ShipLockerEntry
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