pub struct ObjectEffect {
pub rows: Vec<ObjectEffectRow>,
}Available on crate feature
wrath only.Fields§
§rows: Vec<ObjectEffectRow>Trait Implementations§
Source§impl Clone for ObjectEffect
impl Clone for ObjectEffect
Source§fn clone(&self) -> ObjectEffect
fn clone(&self) -> ObjectEffect
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 ObjectEffect
impl DbcTable for ObjectEffect
Source§const FILENAME: &'static str = "ObjectEffect.dbc"
const FILENAME: &'static str = "ObjectEffect.dbc"
The name of the DBC file with
.dbc at the end.Source§type Row = ObjectEffectRow
type Row = ObjectEffectRow
Will be the name of the implementing type suffixed with
Row.Source§impl Debug for ObjectEffect
impl Debug for ObjectEffect
Source§impl Indexable for ObjectEffect
impl Indexable for ObjectEffect
Source§type PrimaryKey = ObjectEffectKey
type PrimaryKey = ObjectEffectKey
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 PartialEq for ObjectEffect
impl PartialEq for ObjectEffect
Source§impl PartialOrd for ObjectEffect
impl PartialOrd for ObjectEffect
impl StructuralPartialEq for ObjectEffect
Auto Trait Implementations§
impl Freeze for ObjectEffect
impl RefUnwindSafe for ObjectEffect
impl Send for ObjectEffect
impl Sync for ObjectEffect
impl Unpin for ObjectEffect
impl UnwindSafe for ObjectEffect
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