pub struct ItemWithQualityCount {
pub count: u32,
pub name: &'static str,
pub quality: &'static str,
}Fields§
§count: u32§name: &'static str§quality: &'static strTrait Implementations§
Source§impl Clone for ItemWithQualityCount
impl Clone for ItemWithQualityCount
Source§fn clone(&self) -> ItemWithQualityCount
fn clone(&self) -> ItemWithQualityCount
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 moreimpl Copy for ItemWithQualityCount
Source§impl Debug for ItemWithQualityCount
impl Debug for ItemWithQualityCount
Source§impl Default for ItemWithQualityCount
impl Default for ItemWithQualityCount
Source§fn default() -> ItemWithQualityCount
fn default() -> ItemWithQualityCount
Returns the “default value” for a type. Read more
Source§impl PartialEq for ItemWithQualityCount
impl PartialEq for ItemWithQualityCount
impl StructuralPartialEq for ItemWithQualityCount
Auto Trait Implementations§
impl Freeze for ItemWithQualityCount
impl RefUnwindSafe for ItemWithQualityCount
impl Send for ItemWithQualityCount
impl Sync for ItemWithQualityCount
impl Unpin for ItemWithQualityCount
impl UnsafeUnpin for ItemWithQualityCount
impl UnwindSafe for ItemWithQualityCount
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