pub struct Manufacturer {
pub code: &'static str,
pub name: &'static str,
pub weapon_types: &'static [&'static str],
pub style: &'static str,
}Expand description
Manufacturer information
Fields§
§code: &'static str§name: &'static str§weapon_types: &'static [&'static str]§style: &'static strTrait Implementations§
Source§impl Clone for Manufacturer
impl Clone for Manufacturer
Source§fn clone(&self) -> Manufacturer
fn clone(&self) -> Manufacturer
Returns a duplicate 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 Manufacturer
impl Debug for Manufacturer
Source§impl PartialEq for Manufacturer
impl PartialEq for Manufacturer
impl Eq for Manufacturer
impl StructuralPartialEq for Manufacturer
Auto Trait Implementations§
impl Freeze for Manufacturer
impl RefUnwindSafe for Manufacturer
impl Send for Manufacturer
impl Sync for Manufacturer
impl Unpin for Manufacturer
impl UnwindSafe for Manufacturer
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.