pub struct OutfittingEntry {
pub id: u64,
pub name: ShipModule,
pub buy_price: u64,
}Fields§
§id: u64§name: ShipModule§buy_price: u64Trait Implementations§
Source§impl Clone for OutfittingEntry
impl Clone for OutfittingEntry
Source§fn clone(&self) -> OutfittingEntry
fn clone(&self) -> OutfittingEntry
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 OutfittingEntry
impl Debug for OutfittingEntry
Source§impl<'de> Deserialize<'de> for OutfittingEntry
impl<'de> Deserialize<'de> for OutfittingEntry
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 OutfittingEntry
impl PartialEq for OutfittingEntry
Source§fn eq(&self, other: &OutfittingEntry) -> bool
fn eq(&self, other: &OutfittingEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OutfittingEntry
impl Serialize for OutfittingEntry
impl StructuralPartialEq for OutfittingEntry
Auto Trait Implementations§
impl Freeze for OutfittingEntry
impl RefUnwindSafe for OutfittingEntry
impl Send for OutfittingEntry
impl Sync for OutfittingEntry
impl Unpin for OutfittingEntry
impl UnsafeUnpin for OutfittingEntry
impl UnwindSafe for OutfittingEntry
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