pub struct SpellVisualKitModelAttach {
pub rows: Vec<SpellVisualKitModelAttachRow>,
}Available on crate feature
wrath only.Fields§
§rows: Vec<SpellVisualKitModelAttachRow>Trait Implementations§
Source§impl Clone for SpellVisualKitModelAttach
impl Clone for SpellVisualKitModelAttach
Source§fn clone(&self) -> SpellVisualKitModelAttach
fn clone(&self) -> SpellVisualKitModelAttach
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 DbcTable for SpellVisualKitModelAttach
impl DbcTable for SpellVisualKitModelAttach
Source§const FILENAME: &'static str = "SpellVisualKitModelAttach.dbc"
const FILENAME: &'static str = "SpellVisualKitModelAttach.dbc"
The name of the DBC file with
.dbc at the end.Source§type Row = SpellVisualKitModelAttachRow
type Row = SpellVisualKitModelAttachRow
Will be the name of the implementing type suffixed with
Row.Source§impl Debug for SpellVisualKitModelAttach
impl Debug for SpellVisualKitModelAttach
Source§impl Indexable for SpellVisualKitModelAttach
impl Indexable for SpellVisualKitModelAttach
Source§type PrimaryKey = SpellVisualKitModelAttachKey
type PrimaryKey = SpellVisualKitModelAttachKey
Key used to index into the table. Same name as the table suffixed with
Key.Source§fn get(&self, key: impl TryInto<Self::PrimaryKey>) -> Option<&Self::Row>
fn get(&self, key: impl TryInto<Self::PrimaryKey>) -> Option<&Self::Row>
Gets the primary key, if present. Internally this is just
std::iter::Iterator::find since the
items are not guaranteed to be ordered nor even be present.Source§fn get_mut(
&mut self,
key: impl TryInto<Self::PrimaryKey>,
) -> Option<&mut Self::Row>
fn get_mut( &mut self, key: impl TryInto<Self::PrimaryKey>, ) -> Option<&mut Self::Row>
Gets the primary key, if present. Internally this is just
std::iter::Iterator::find since the
items are not guaranteed to be ordered nor even be present.Source§impl PartialOrd for SpellVisualKitModelAttach
impl PartialOrd for SpellVisualKitModelAttach
impl StructuralPartialEq for SpellVisualKitModelAttach
Auto Trait Implementations§
impl Freeze for SpellVisualKitModelAttach
impl RefUnwindSafe for SpellVisualKitModelAttach
impl Send for SpellVisualKitModelAttach
impl Sync for SpellVisualKitModelAttach
impl Unpin for SpellVisualKitModelAttach
impl UnwindSafe for SpellVisualKitModelAttach
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