Trait Indexable

Source
pub trait Indexable: DbcTable {
    type PrimaryKey;

    // Required methods
    fn get(&self, key: impl TryInto<Self::PrimaryKey>) -> Option<&Self::Row>;
    fn get_mut(
        &mut self,
        key: impl TryInto<Self::PrimaryKey>,
    ) -> Option<&mut Self::Row>;
}
Expand description

Implemented by tables that have a primary key.

This is a separate trait instead of just implementing std::ops::Index and std::ops::IndexMut since those traits do not return Options and only have the possibility of panicking on invalid keys.

The original DBCs do not really respect primary/foreign keys, so this just seemed like it would make everything more annoying.

Required Associated Types§

Source

type PrimaryKey

Key used to index into the table. Same name as the table suffixed with Key.

Required Methods§

Source

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>

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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Indexable for wow_dbc::tbc_tables::animation_data::AnimationData

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::area_poi::AreaPOI

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::area_table::AreaTable

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::area_trigger::AreaTrigger

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::attack_anim_kits::AttackAnimKits

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::auction_house::AuctionHouse

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::bank_bag_slot_prices::BankBagSlotPrices

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::battlemaster_list::BattlemasterList

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::camera_shakes::CameraShakes

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::cfg_categories::Cfg_Categories

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::cfg_configs::Cfg_Configs

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::char_hair_geosets::CharHairGeosets

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::char_hair_textures::CharHairTextures

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::char_sections::CharSections

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::char_start_outfit::CharStartOutfit

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::char_titles::CharTitles

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::chat_channels::ChatChannels

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::chat_profanity::ChatProfanity

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::chr_classes::ChrClasses

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::chr_races::ChrRaces

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::cinematic_camera::CinematicCamera

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::cinematic_sequences::CinematicSequences

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::creature_display_info::CreatureDisplayInfo

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::creature_display_info_extra::CreatureDisplayInfoExtra

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::creature_family::CreatureFamily

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::creature_model_data::CreatureModelData

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::creature_sound_data::CreatureSoundData

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::creature_spell_data::CreatureSpellData

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::creature_type::CreatureType

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::death_thud_lookups::DeathThudLookups

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::declined_word::DeclinedWord

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::declined_word_cases::DeclinedWordCases

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::durability_costs::DurabilityCosts

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::durability_quality::DurabilityQuality

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::emotes::Emotes

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::emotes_text::EmotesText

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::emotes_text_data::EmotesTextData

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::emotes_text_sound::EmotesTextSound

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::environmental_damage::EnvironmentalDamage

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::exhaustion::Exhaustion

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::faction::Faction

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::faction_group::FactionGroup

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::faction_template::FactionTemplate

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::footprint_textures::FootprintTextures

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::footstep_terrain_lookup::FootstepTerrainLookup

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::game_object_art_kit::GameObjectArtKit

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::game_object_display_info::GameObjectDisplayInfo

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::game_tips::GameTips

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::gem_properties::GemProperties

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::gm_survey_current_survey::GMSurveyCurrentSurvey

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::gm_survey_questions::GMSurveyQuestions

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::gm_survey_surveys::GMSurveySurveys

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::gm_ticket_category::GMTicketCategory

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::ground_effect_doodad::GroundEffectDoodad

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::ground_effect_texture::GroundEffectTexture

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::helmet_geoset_vis_data::HelmetGeosetVisData

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item::Item

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_bag_family::ItemBagFamily

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_cond_ext_costs::ItemCondExtCosts

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_display_info::ItemDisplayInfo

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_extended_cost::ItemExtendedCost

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_group_sounds::ItemGroupSounds

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_pet_food::ItemPetFood

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_random_properties::ItemRandomProperties

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_random_suffix::ItemRandomSuffix

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_set::ItemSet

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_visual_effects::ItemVisualEffects

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::item_visuals::ItemVisuals

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::language_words::LanguageWords

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::languages::Languages

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::lfg_dungeons::LFGDungeons

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::light::Light

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::light_float_band::LightFloatBand

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::light_int_band::LightIntBand

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::light_params::LightParams

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::light_skybox::LightSkybox

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::liquid_type::LiquidType

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::loading_screens::LoadingScreens

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::lock::Lock

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::lock_type::LockType

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::mail_template::MailTemplate

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::map::Map

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::material::Material

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::name_gen::NameGen

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::names_profanity::NamesProfanity

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::names_reserved::NamesReserved

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::npc_sounds::NPCSounds

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::package::Package

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::page_text_material::PageTextMaterial

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::particle_color::ParticleColor

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::pet_loyalty::PetLoyalty

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::pet_personality::PetPersonality

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::petition_type::PetitionType

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::quest_info::QuestInfo

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::quest_sort::QuestSort

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::rand_prop_points::RandPropPoints

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::resistances::Resistances

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::server_messages::ServerMessages

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::sheathe_sound_lookups::SheatheSoundLookups

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::skill_costs_data::SkillCostsData

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::skill_line::SkillLine

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::skill_line_ability::SkillLineAbility

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::skill_line_category::SkillLineCategory

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::skill_race_class_info::SkillRaceClassInfo

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::skill_tiers::SkillTiers

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::sound_ambience::SoundAmbience

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::sound_entries::SoundEntries

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::sound_provider_preferences::SoundProviderPreferences

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::sound_sample_preferences::SoundSamplePreferences

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::sound_water_type::SoundWaterType

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spam_messages::SpamMessages

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell::Spell

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_cast_times::SpellCastTimes

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_category::SpellCategory

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_chain_effects::SpellChainEffects

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_dispel_type::SpellDispelType

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_duration::SpellDuration

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_effect_camera_shakes::SpellEffectCameraShakes

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_focus_object::SpellFocusObject

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_icon::SpellIcon

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_item_enchantment::SpellItemEnchantment

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_mechanic::SpellMechanic

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_missile_motion::SpellMissileMotion

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_radius::SpellRadius

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_range::SpellRange

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_shapeshift_form::SpellShapeshiftForm

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_visual::SpellVisual

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_visual_effect_name::SpellVisualEffectName

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_visual_kit::SpellVisualKit

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::stable_slot_prices::StableSlotPrices

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::startup_strings::Startup_Strings

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::stationery::Stationery

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::string_lookups::StringLookups

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::summon_properties::SummonProperties

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::talent::Talent

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::talent_tab::TalentTab

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::taxi_nodes::TaxiNodes

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::taxi_path::TaxiPath

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::taxi_path_node::TaxiPathNode

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::terrain_type_sounds::TerrainTypeSounds

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::totem_category::TotemCategory

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::transport_animation::TransportAnimation

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::transport_physics::TransportPhysics

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::ui_sound_lookups::UISoundLookups

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::unit_blood::UnitBlood

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::unit_blood_levels::UnitBloodLevels

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::video_hardware::VideoHardware

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::vocal_ui_sounds::VocalUISounds

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::weapon_impact_sounds::WeaponImpactSounds

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::weapon_swing_sounds2::WeaponSwingSounds2

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::weather::Weather

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::wmo_area_table::WMOAreaTable

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::world_map_area::WorldMapArea

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::world_map_continent::WorldMapContinent

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::world_map_overlay::WorldMapOverlay

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::world_map_transforms::WorldMapTransforms

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::world_safe_locs::WorldSafeLocs

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::world_state_ui::WorldStateUI

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::wow_error_strings::WowError_Strings

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::zone_intro_music_table::ZoneIntroMusicTable

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::tbc_tables::zone_music::ZoneMusic

Available on crate feature tbc only.
Source§

impl Indexable for wow_dbc::vanilla_tables::animation_data::AnimationData

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::area_poi::AreaPOI

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::area_table::AreaTable

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::area_trigger::AreaTrigger

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::attack_anim_kits::AttackAnimKits

Available on crate feature vanilla only.
Source§

impl Indexable for AttackAnimTypes

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::auction_house::AuctionHouse

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::bank_bag_slot_prices::BankBagSlotPrices

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::camera_shakes::CameraShakes

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::cfg_configs::Cfg_Configs

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::char_hair_geosets::CharHairGeosets

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::char_hair_textures::CharHairTextures

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::char_sections::CharSections

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::char_start_outfit::CharStartOutfit

Available on crate feature vanilla only.
Source§

impl Indexable for CharacterCreateCameras

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::chat_channels::ChatChannels

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::chat_profanity::ChatProfanity

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::chr_classes::ChrClasses

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::chr_races::ChrRaces

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::cinematic_camera::CinematicCamera

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::cinematic_sequences::CinematicSequences

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::creature_display_info::CreatureDisplayInfo

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::creature_display_info_extra::CreatureDisplayInfoExtra

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::creature_family::CreatureFamily

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::creature_model_data::CreatureModelData

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::creature_sound_data::CreatureSoundData

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::creature_spell_data::CreatureSpellData

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::creature_type::CreatureType

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::death_thud_lookups::DeathThudLookups

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::durability_costs::DurabilityCosts

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::durability_quality::DurabilityQuality

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::emotes::Emotes

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::emotes_text::EmotesText

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::emotes_text_data::EmotesTextData

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::emotes_text_sound::EmotesTextSound

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::environmental_damage::EnvironmentalDamage

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::exhaustion::Exhaustion

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::faction::Faction

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::faction_group::FactionGroup

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::faction_template::FactionTemplate

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::footprint_textures::FootprintTextures

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::footstep_terrain_lookup::FootstepTerrainLookup

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::game_object_art_kit::GameObjectArtKit

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::game_object_display_info::GameObjectDisplayInfo

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::game_tips::GameTips

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::gm_survey_questions::GMSurveyQuestions

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::gm_survey_surveys::GMSurveySurveys

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::gm_ticket_category::GMTicketCategory

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::ground_effect_doodad::GroundEffectDoodad

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::ground_effect_texture::GroundEffectTexture

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::helmet_geoset_vis_data::HelmetGeosetVisData

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_bag_family::ItemBagFamily

Available on crate feature vanilla only.
Source§

impl Indexable for ItemClass

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_display_info::ItemDisplayInfo

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_group_sounds::ItemGroupSounds

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_pet_food::ItemPetFood

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_random_properties::ItemRandomProperties

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_set::ItemSet

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_visual_effects::ItemVisualEffects

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::item_visuals::ItemVisuals

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::language_words::LanguageWords

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::languages::Languages

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::lfg_dungeons::LFGDungeons

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::light::Light

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::light_float_band::LightFloatBand

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::light_int_band::LightIntBand

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::light_params::LightParams

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::light_skybox::LightSkybox

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::liquid_type::LiquidType

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::loading_screens::LoadingScreens

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::lock::Lock

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::lock_type::LockType

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::mail_template::MailTemplate

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::map::Map

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::material::Material

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::name_gen::NameGen

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::names_profanity::NamesProfanity

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::names_reserved::NamesReserved

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::npc_sounds::NPCSounds

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::package::Package

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::page_text_material::PageTextMaterial

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::pet_loyalty::PetLoyalty

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::pet_personality::PetPersonality

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::quest_info::QuestInfo

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::quest_sort::QuestSort

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::resistances::Resistances

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::server_messages::ServerMessages

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::sheathe_sound_lookups::SheatheSoundLookups

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::skill_costs_data::SkillCostsData

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::skill_line::SkillLine

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::skill_line_ability::SkillLineAbility

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::skill_line_category::SkillLineCategory

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::skill_race_class_info::SkillRaceClassInfo

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::skill_tiers::SkillTiers

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::sound_ambience::SoundAmbience

Available on crate feature vanilla only.
Source§

impl Indexable for SoundCharacterMacroLines

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::sound_entries::SoundEntries

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::sound_provider_preferences::SoundProviderPreferences

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::sound_sample_preferences::SoundSamplePreferences

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::sound_water_type::SoundWaterType

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spam_messages::SpamMessages

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell::Spell

Available on crate feature vanilla only.
Source§

impl Indexable for SpellAuraNames

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_cast_times::SpellCastTimes

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_category::SpellCategory

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_chain_effects::SpellChainEffects

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_dispel_type::SpellDispelType

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_duration::SpellDuration

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_effect_camera_shakes::SpellEffectCameraShakes

Available on crate feature vanilla only.
Source§

impl Indexable for SpellEffectNames

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_focus_object::SpellFocusObject

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_icon::SpellIcon

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_item_enchantment::SpellItemEnchantment

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_mechanic::SpellMechanic

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_radius::SpellRadius

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_range::SpellRange

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_shapeshift_form::SpellShapeshiftForm

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_visual::SpellVisual

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_visual_effect_name::SpellVisualEffectName

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_visual_kit::SpellVisualKit

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::stable_slot_prices::StableSlotPrices

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::startup_strings::Startup_Strings

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::stationery::Stationery

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::string_lookups::StringLookups

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::talent::Talent

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::talent_tab::TalentTab

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::taxi_nodes::TaxiNodes

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::taxi_path::TaxiPath

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::taxi_path_node::TaxiPathNode

Available on crate feature vanilla only.
Source§

impl Indexable for TerrainType

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::terrain_type_sounds::TerrainTypeSounds

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::transport_animation::TransportAnimation

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::ui_sound_lookups::UISoundLookups

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::unit_blood::UnitBlood

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::unit_blood_levels::UnitBloodLevels

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::video_hardware::VideoHardware

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::vocal_ui_sounds::VocalUISounds

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::weapon_impact_sounds::WeaponImpactSounds

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::weapon_swing_sounds2::WeaponSwingSounds2

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::wmo_area_table::WMOAreaTable

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::world_map_area::WorldMapArea

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::world_map_continent::WorldMapContinent

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::world_map_overlay::WorldMapOverlay

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::world_safe_locs::WorldSafeLocs

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::world_state_ui::WorldStateUI

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::wow_error_strings::WowError_Strings

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::zone_intro_music_table::ZoneIntroMusicTable

Available on crate feature vanilla only.
Source§

impl Indexable for wow_dbc::vanilla_tables::zone_music::ZoneMusic

Available on crate feature vanilla only.
Source§

impl Indexable for Achievement

Available on crate feature wrath only.
Source§

impl Indexable for Achievement_Category

Available on crate feature wrath only.
Source§

impl Indexable for Achievement_Criteria

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::animation_data::AnimationData

Available on crate feature wrath only.
Source§

impl Indexable for AreaGroup

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::area_poi::AreaPOI

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::area_table::AreaTable

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::area_trigger::AreaTrigger

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::attack_anim_kits::AttackAnimKits

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::auction_house::AuctionHouse

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::bank_bag_slot_prices::BankBagSlotPrices

Available on crate feature wrath only.
Source§

impl Indexable for BannedAddOns

Available on crate feature wrath only.
Source§

impl Indexable for BarberShopStyle

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::battlemaster_list::BattlemasterList

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::camera_shakes::CameraShakes

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::cfg_categories::Cfg_Categories

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::cfg_configs::Cfg_Configs

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::char_hair_geosets::CharHairGeosets

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::char_hair_textures::CharHairTextures

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::char_sections::CharSections

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::char_start_outfit::CharStartOutfit

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::char_titles::CharTitles

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::chat_channels::ChatChannels

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::chat_profanity::ChatProfanity

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::chr_classes::ChrClasses

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::chr_races::ChrRaces

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::cinematic_camera::CinematicCamera

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::cinematic_sequences::CinematicSequences

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::creature_display_info::CreatureDisplayInfo

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::creature_display_info_extra::CreatureDisplayInfoExtra

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::creature_family::CreatureFamily

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::creature_model_data::CreatureModelData

Available on crate feature wrath only.
Source§

impl Indexable for CreatureMovementInfo

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::creature_sound_data::CreatureSoundData

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::creature_spell_data::CreatureSpellData

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::creature_type::CreatureType

Available on crate feature wrath only.
Source§

impl Indexable for CurrencyCategory

Available on crate feature wrath only.
Source§

impl Indexable for CurrencyTypes

Available on crate feature wrath only.
Source§

impl Indexable for DanceMoves

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::death_thud_lookups::DeathThudLookups

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::declined_word::DeclinedWord

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::declined_word_cases::DeclinedWordCases

Available on crate feature wrath only.
Source§

impl Indexable for DestructibleModelData

Available on crate feature wrath only.
Source§

impl Indexable for DungeonEncounter

Available on crate feature wrath only.
Source§

impl Indexable for DungeonMap

Available on crate feature wrath only.
Source§

impl Indexable for DungeonMapChunk

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::durability_costs::DurabilityCosts

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::durability_quality::DurabilityQuality

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::emotes::Emotes

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::emotes_text::EmotesText

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::emotes_text_data::EmotesTextData

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::emotes_text_sound::EmotesTextSound

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::environmental_damage::EnvironmentalDamage

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::exhaustion::Exhaustion

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::faction::Faction

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::faction_group::FactionGroup

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::faction_template::FactionTemplate

Available on crate feature wrath only.
Source§

impl Indexable for FileData

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::footprint_textures::FootprintTextures

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::footstep_terrain_lookup::FootstepTerrainLookup

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::game_object_art_kit::GameObjectArtKit

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::game_object_display_info::GameObjectDisplayInfo

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::game_tips::GameTips

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::gem_properties::GemProperties

Available on crate feature wrath only.
Source§

impl Indexable for GlyphProperties

Available on crate feature wrath only.
Source§

impl Indexable for GlyphSlot

Available on crate feature wrath only.
Source§

impl Indexable for GMSurveyAnswers

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::gm_survey_current_survey::GMSurveyCurrentSurvey

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::gm_survey_questions::GMSurveyQuestions

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::gm_survey_surveys::GMSurveySurveys

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::gm_ticket_category::GMTicketCategory

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::ground_effect_doodad::GroundEffectDoodad

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::ground_effect_texture::GroundEffectTexture

Available on crate feature wrath only.
Source§

impl Indexable for gtOCTClassCombatRatingScalar

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::helmet_geoset_vis_data::HelmetGeosetVisData

Available on crate feature wrath only.
Source§

impl Indexable for HolidayDescriptions

Available on crate feature wrath only.
Source§

impl Indexable for HolidayNames

Available on crate feature wrath only.
Source§

impl Indexable for Holidays

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item::Item

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_bag_family::ItemBagFamily

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_cond_ext_costs::ItemCondExtCosts

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_display_info::ItemDisplayInfo

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_extended_cost::ItemExtendedCost

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_group_sounds::ItemGroupSounds

Available on crate feature wrath only.
Source§

impl Indexable for ItemLimitCategory

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_pet_food::ItemPetFood

Available on crate feature wrath only.
Source§

impl Indexable for ItemPurchaseGroup

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_random_properties::ItemRandomProperties

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_random_suffix::ItemRandomSuffix

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_set::ItemSet

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_visual_effects::ItemVisualEffects

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::item_visuals::ItemVisuals

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::language_words::LanguageWords

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::languages::Languages

Available on crate feature wrath only.
Source§

impl Indexable for LFGDungeonExpansion

Available on crate feature wrath only.
Source§

impl Indexable for LFGDungeonGroup

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::lfg_dungeons::LFGDungeons

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::light::Light

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::light_float_band::LightFloatBand

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::light_int_band::LightIntBand

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::light_params::LightParams

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::light_skybox::LightSkybox

Available on crate feature wrath only.
Source§

impl Indexable for LiquidMaterial

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::liquid_type::LiquidType

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::loading_screens::LoadingScreens

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::lock::Lock

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::lock_type::LockType

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::mail_template::MailTemplate

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::map::Map

Available on crate feature wrath only.
Source§

impl Indexable for MapDifficulty

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::material::Material

Available on crate feature wrath only.
Source§

impl Indexable for Movie

Available on crate feature wrath only.
Source§

impl Indexable for MovieVariation

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::name_gen::NameGen

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::names_profanity::NamesProfanity

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::names_reserved::NamesReserved

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::npc_sounds::NPCSounds

Available on crate feature wrath only.
Source§

impl Indexable for ObjectEffect

Available on crate feature wrath only.
Source§

impl Indexable for ObjectEffectGroup

Available on crate feature wrath only.
Source§

impl Indexable for ObjectEffectModifier

Available on crate feature wrath only.
Source§

impl Indexable for ObjectEffectPackage

Available on crate feature wrath only.
Source§

impl Indexable for ObjectEffectPackageElem

Available on crate feature wrath only.
Source§

impl Indexable for OverrideSpellData

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::package::Package

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::page_text_material::PageTextMaterial

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::particle_color::ParticleColor

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::pet_personality::PetPersonality

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::petition_type::PetitionType

Available on crate feature wrath only.
Source§

impl Indexable for PowerDisplay

Available on crate feature wrath only.
Source§

impl Indexable for PvpDifficulty

Available on crate feature wrath only.
Source§

impl Indexable for QuestFactionReward

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::quest_info::QuestInfo

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::quest_sort::QuestSort

Available on crate feature wrath only.
Source§

impl Indexable for QuestXP

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::rand_prop_points::RandPropPoints

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::resistances::Resistances

Available on crate feature wrath only.
Source§

impl Indexable for ScalingStatDistribution

Available on crate feature wrath only.
Source§

impl Indexable for ScalingStatValues

Available on crate feature wrath only.
Source§

impl Indexable for ScreenEffect

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::server_messages::ServerMessages

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::sheathe_sound_lookups::SheatheSoundLookups

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::skill_costs_data::SkillCostsData

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::skill_line::SkillLine

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::skill_line_ability::SkillLineAbility

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::skill_line_category::SkillLineCategory

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::skill_race_class_info::SkillRaceClassInfo

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::skill_tiers::SkillTiers

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::sound_ambience::SoundAmbience

Available on crate feature wrath only.
Source§

impl Indexable for SoundEmitters

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::sound_entries::SoundEntries

Available on crate feature wrath only.
Source§

impl Indexable for SoundEntriesAdvanced

Available on crate feature wrath only.
Source§

impl Indexable for SoundFilter

Available on crate feature wrath only.
Source§

impl Indexable for SoundFilterElem

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::sound_provider_preferences::SoundProviderPreferences

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::sound_sample_preferences::SoundSamplePreferences

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::sound_water_type::SoundWaterType

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spam_messages::SpamMessages

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell::Spell

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_cast_times::SpellCastTimes

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_category::SpellCategory

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_chain_effects::SpellChainEffects

Available on crate feature wrath only.
Source§

impl Indexable for SpellDescriptionVariables

Available on crate feature wrath only.
Source§

impl Indexable for SpellDifficulty

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_dispel_type::SpellDispelType

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_duration::SpellDuration

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_effect_camera_shakes::SpellEffectCameraShakes

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_focus_object::SpellFocusObject

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_icon::SpellIcon

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_item_enchantment::SpellItemEnchantment

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_mechanic::SpellMechanic

Available on crate feature wrath only.
Source§

impl Indexable for SpellMissile

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_missile_motion::SpellMissileMotion

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_radius::SpellRadius

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_range::SpellRange

Available on crate feature wrath only.
Source§

impl Indexable for SpellRuneCost

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_shapeshift_form::SpellShapeshiftForm

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_visual::SpellVisual

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_visual_effect_name::SpellVisualEffectName

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_visual_kit::SpellVisualKit

Available on crate feature wrath only.
Source§

impl Indexable for SpellVisualKitAreaModel

Available on crate feature wrath only.
Source§

impl Indexable for SpellVisualKitModelAttach

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::stable_slot_prices::StableSlotPrices

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::startup_strings::Startup_Strings

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::stationery::Stationery

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::string_lookups::StringLookups

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::summon_properties::SummonProperties

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::talent::Talent

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::talent_tab::TalentTab

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::taxi_nodes::TaxiNodes

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::taxi_path::TaxiPath

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::taxi_path_node::TaxiPathNode

Available on crate feature wrath only.
Source§

impl Indexable for TeamContributionPoints

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::terrain_type_sounds::TerrainTypeSounds

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::totem_category::TotemCategory

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::transport_animation::TransportAnimation

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::transport_physics::TransportPhysics

Available on crate feature wrath only.
Source§

impl Indexable for TransportRotation

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::ui_sound_lookups::UISoundLookups

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::unit_blood::UnitBlood

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::unit_blood_levels::UnitBloodLevels

Available on crate feature wrath only.
Source§

impl Indexable for Vehicle

Available on crate feature wrath only.
Source§

impl Indexable for VehicleSeat

Available on crate feature wrath only.
Source§

impl Indexable for VehicleUIIndSeat

Available on crate feature wrath only.
Source§

impl Indexable for VehicleUIIndicator

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::video_hardware::VideoHardware

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::vocal_ui_sounds::VocalUISounds

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::weapon_impact_sounds::WeaponImpactSounds

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::weapon_swing_sounds2::WeaponSwingSounds2

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::weather::Weather

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::wmo_area_table::WMOAreaTable

Available on crate feature wrath only.
Source§

impl Indexable for WorldChunkSounds

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::world_map_area::WorldMapArea

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::world_map_continent::WorldMapContinent

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::world_map_overlay::WorldMapOverlay

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::world_map_transforms::WorldMapTransforms

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::world_safe_locs::WorldSafeLocs

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::world_state_ui::WorldStateUI

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::wow_error_strings::WowError_Strings

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::zone_intro_music_table::ZoneIntroMusicTable

Available on crate feature wrath only.
Source§

impl Indexable for wow_dbc::wrath_tables::zone_music::ZoneMusic

Available on crate feature wrath only.