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§
Sourcetype PrimaryKey
type PrimaryKey
Key used to index into the table. Same name as the table suffixed with Key.
Required Methods§
Sourcefn 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.
Sourcefn 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.
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.
impl Indexable for wow_dbc::tbc_tables::animation_data::AnimationData
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::area_poi::AreaPOI
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::area_poi::AreaPOI
tbc only.type PrimaryKey = AreaPOIKey
Source§impl Indexable for wow_dbc::tbc_tables::area_table::AreaTable
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::area_table::AreaTable
tbc only.type PrimaryKey = AreaTableKey
Source§impl Indexable for wow_dbc::tbc_tables::area_trigger::AreaTrigger
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::area_trigger::AreaTrigger
tbc only.type PrimaryKey = AreaTriggerKey
Source§impl Indexable for wow_dbc::tbc_tables::attack_anim_kits::AttackAnimKits
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::attack_anim_kits::AttackAnimKits
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::auction_house::AuctionHouse
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::auction_house::AuctionHouse
tbc only.type PrimaryKey = AuctionHouseKey
Source§impl Indexable for wow_dbc::tbc_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::bank_bag_slot_prices::BankBagSlotPrices
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::battlemaster_list::BattlemasterList
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::battlemaster_list::BattlemasterList
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::camera_shakes::CameraShakes
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::camera_shakes::CameraShakes
tbc only.type PrimaryKey = CameraShakesKey
Source§impl Indexable for wow_dbc::tbc_tables::cfg_categories::Cfg_Categories
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::cfg_categories::Cfg_Categories
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::cfg_configs::Cfg_Configs
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::cfg_configs::Cfg_Configs
tbc only.type PrimaryKey = Cfg_ConfigsKey
Source§impl Indexable for wow_dbc::tbc_tables::char_hair_geosets::CharHairGeosets
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::char_hair_geosets::CharHairGeosets
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::char_hair_textures::CharHairTextures
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::char_hair_textures::CharHairTextures
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::char_sections::CharSections
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::char_sections::CharSections
tbc only.type PrimaryKey = CharSectionsKey
Source§impl Indexable for wow_dbc::tbc_tables::char_start_outfit::CharStartOutfit
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::char_start_outfit::CharStartOutfit
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::char_titles::CharTitles
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::char_titles::CharTitles
tbc only.type PrimaryKey = CharTitlesKey
Source§impl Indexable for wow_dbc::tbc_tables::chat_channels::ChatChannels
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::chat_channels::ChatChannels
tbc only.type PrimaryKey = ChatChannelsKey
Source§impl Indexable for wow_dbc::tbc_tables::chat_profanity::ChatProfanity
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::chat_profanity::ChatProfanity
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::chr_classes::ChrClasses
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::chr_classes::ChrClasses
tbc only.type PrimaryKey = ChrClassesKey
Source§impl Indexable for wow_dbc::tbc_tables::chr_races::ChrRaces
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::chr_races::ChrRaces
tbc only.type PrimaryKey = ChrRacesKey
Source§impl Indexable for wow_dbc::tbc_tables::cinematic_camera::CinematicCamera
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::cinematic_camera::CinematicCamera
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::cinematic_sequences::CinematicSequences
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::cinematic_sequences::CinematicSequences
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::creature_display_info::CreatureDisplayInfo
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::creature_display_info_extra::CreatureDisplayInfoExtra
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::creature_family::CreatureFamily
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::creature_family::CreatureFamily
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::creature_model_data::CreatureModelData
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::creature_model_data::CreatureModelData
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::creature_sound_data::CreatureSoundData
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::creature_sound_data::CreatureSoundData
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::creature_spell_data::CreatureSpellData
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::creature_spell_data::CreatureSpellData
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::creature_type::CreatureType
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::creature_type::CreatureType
tbc only.type PrimaryKey = CreatureTypeKey
Source§impl Indexable for wow_dbc::tbc_tables::death_thud_lookups::DeathThudLookups
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::death_thud_lookups::DeathThudLookups
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::declined_word::DeclinedWord
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::declined_word::DeclinedWord
tbc only.type PrimaryKey = DeclinedWordKey
Source§impl Indexable for wow_dbc::tbc_tables::declined_word_cases::DeclinedWordCases
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::declined_word_cases::DeclinedWordCases
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::durability_costs::DurabilityCosts
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::durability_costs::DurabilityCosts
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::durability_quality::DurabilityQuality
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::durability_quality::DurabilityQuality
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::emotes::Emotes
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::emotes::Emotes
tbc only.type PrimaryKey = EmotesKey
Source§impl Indexable for wow_dbc::tbc_tables::emotes_text::EmotesText
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::emotes_text::EmotesText
tbc only.type PrimaryKey = EmotesTextKey
Source§impl Indexable for wow_dbc::tbc_tables::emotes_text_data::EmotesTextData
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::emotes_text_data::EmotesTextData
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::emotes_text_sound::EmotesTextSound
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::emotes_text_sound::EmotesTextSound
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::environmental_damage::EnvironmentalDamage
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::environmental_damage::EnvironmentalDamage
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::exhaustion::Exhaustion
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::exhaustion::Exhaustion
tbc only.type PrimaryKey = ExhaustionKey
Source§impl Indexable for wow_dbc::tbc_tables::faction::Faction
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::faction::Faction
tbc only.type PrimaryKey = FactionKey
Source§impl Indexable for wow_dbc::tbc_tables::faction_group::FactionGroup
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::faction_group::FactionGroup
tbc only.type PrimaryKey = FactionGroupKey
Source§impl Indexable for wow_dbc::tbc_tables::faction_template::FactionTemplate
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::faction_template::FactionTemplate
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::footprint_textures::FootprintTextures
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::footprint_textures::FootprintTextures
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::footstep_terrain_lookup::FootstepTerrainLookup
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::game_object_art_kit::GameObjectArtKit
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::game_object_display_info::GameObjectDisplayInfo
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::game_tips::GameTips
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::game_tips::GameTips
tbc only.type PrimaryKey = GameTipsKey
Source§impl Indexable for wow_dbc::tbc_tables::gem_properties::GemProperties
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::gem_properties::GemProperties
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::gm_survey_questions::GMSurveyQuestions
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::gm_survey_surveys::GMSurveySurveys
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::gm_ticket_category::GMTicketCategory
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::gm_ticket_category::GMTicketCategory
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::ground_effect_doodad::GroundEffectDoodad
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::ground_effect_texture::GroundEffectTexture
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::helmet_geoset_vis_data::HelmetGeosetVisData
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item::Item
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item::Item
tbc only.type PrimaryKey = ItemKey
Source§impl Indexable for wow_dbc::tbc_tables::item_bag_family::ItemBagFamily
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_bag_family::ItemBagFamily
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_cond_ext_costs::ItemCondExtCosts
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_cond_ext_costs::ItemCondExtCosts
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_display_info::ItemDisplayInfo
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_display_info::ItemDisplayInfo
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_extended_cost::ItemExtendedCost
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_extended_cost::ItemExtendedCost
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_group_sounds::ItemGroupSounds
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_group_sounds::ItemGroupSounds
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_pet_food::ItemPetFood
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_pet_food::ItemPetFood
tbc only.type PrimaryKey = ItemPetFoodKey
Source§impl Indexable for wow_dbc::tbc_tables::item_random_properties::ItemRandomProperties
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_random_properties::ItemRandomProperties
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_random_suffix::ItemRandomSuffix
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_random_suffix::ItemRandomSuffix
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_set::ItemSet
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_set::ItemSet
tbc only.type PrimaryKey = ItemSetKey
Source§impl Indexable for wow_dbc::tbc_tables::item_visual_effects::ItemVisualEffects
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_visual_effects::ItemVisualEffects
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::item_visuals::ItemVisuals
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::item_visuals::ItemVisuals
tbc only.type PrimaryKey = ItemVisualsKey
Source§impl Indexable for wow_dbc::tbc_tables::language_words::LanguageWords
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::language_words::LanguageWords
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::languages::Languages
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::languages::Languages
tbc only.type PrimaryKey = LanguagesKey
Source§impl Indexable for wow_dbc::tbc_tables::lfg_dungeons::LFGDungeons
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::lfg_dungeons::LFGDungeons
tbc only.type PrimaryKey = LFGDungeonsKey
Source§impl Indexable for wow_dbc::tbc_tables::light::Light
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::light::Light
tbc only.type PrimaryKey = LightKey
Source§impl Indexable for wow_dbc::tbc_tables::light_float_band::LightFloatBand
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::light_float_band::LightFloatBand
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::light_int_band::LightIntBand
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::light_int_band::LightIntBand
tbc only.type PrimaryKey = LightIntBandKey
Source§impl Indexable for wow_dbc::tbc_tables::light_params::LightParams
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::light_params::LightParams
tbc only.type PrimaryKey = LightParamsKey
Source§impl Indexable for wow_dbc::tbc_tables::light_skybox::LightSkybox
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::light_skybox::LightSkybox
tbc only.type PrimaryKey = LightSkyboxKey
Source§impl Indexable for wow_dbc::tbc_tables::liquid_type::LiquidType
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::liquid_type::LiquidType
tbc only.type PrimaryKey = LiquidTypeKey
Source§impl Indexable for wow_dbc::tbc_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::loading_screens::LoadingScreens
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::loading_screens::LoadingScreens
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::lock::Lock
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::lock::Lock
tbc only.type PrimaryKey = LockKey
Source§impl Indexable for wow_dbc::tbc_tables::lock_type::LockType
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::lock_type::LockType
tbc only.type PrimaryKey = LockTypeKey
Source§impl Indexable for wow_dbc::tbc_tables::mail_template::MailTemplate
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::mail_template::MailTemplate
tbc only.type PrimaryKey = MailTemplateKey
Source§impl Indexable for wow_dbc::tbc_tables::map::Map
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::map::Map
tbc only.type PrimaryKey = MapKey
Source§impl Indexable for wow_dbc::tbc_tables::material::Material
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::material::Material
tbc only.type PrimaryKey = MaterialKey
Source§impl Indexable for wow_dbc::tbc_tables::name_gen::NameGen
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::name_gen::NameGen
tbc only.type PrimaryKey = NameGenKey
Source§impl Indexable for wow_dbc::tbc_tables::names_profanity::NamesProfanity
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::names_profanity::NamesProfanity
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::names_reserved::NamesReserved
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::names_reserved::NamesReserved
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::npc_sounds::NPCSounds
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::npc_sounds::NPCSounds
tbc only.type PrimaryKey = NPCSoundsKey
Source§impl Indexable for wow_dbc::tbc_tables::package::Package
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::package::Package
tbc only.type PrimaryKey = PackageKey
Source§impl Indexable for wow_dbc::tbc_tables::page_text_material::PageTextMaterial
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::page_text_material::PageTextMaterial
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::particle_color::ParticleColor
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::particle_color::ParticleColor
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::pet_loyalty::PetLoyalty
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::pet_loyalty::PetLoyalty
tbc only.type PrimaryKey = PetLoyaltyKey
Source§impl Indexable for wow_dbc::tbc_tables::pet_personality::PetPersonality
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::pet_personality::PetPersonality
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::petition_type::PetitionType
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::petition_type::PetitionType
tbc only.type PrimaryKey = PetitionTypeKey
Source§impl Indexable for wow_dbc::tbc_tables::quest_info::QuestInfo
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::quest_info::QuestInfo
tbc only.type PrimaryKey = QuestInfoKey
Source§impl Indexable for wow_dbc::tbc_tables::quest_sort::QuestSort
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::quest_sort::QuestSort
tbc only.type PrimaryKey = QuestSortKey
Source§impl Indexable for wow_dbc::tbc_tables::rand_prop_points::RandPropPoints
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::rand_prop_points::RandPropPoints
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::resistances::Resistances
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::resistances::Resistances
tbc only.type PrimaryKey = ResistancesKey
Source§impl Indexable for wow_dbc::tbc_tables::server_messages::ServerMessages
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::server_messages::ServerMessages
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::sheathe_sound_lookups::SheatheSoundLookups
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::skill_costs_data::SkillCostsData
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::skill_costs_data::SkillCostsData
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::skill_line::SkillLine
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::skill_line::SkillLine
tbc only.type PrimaryKey = SkillLineKey
Source§impl Indexable for wow_dbc::tbc_tables::skill_line_ability::SkillLineAbility
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::skill_line_ability::SkillLineAbility
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::skill_line_category::SkillLineCategory
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::skill_line_category::SkillLineCategory
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::skill_race_class_info::SkillRaceClassInfo
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::skill_tiers::SkillTiers
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::skill_tiers::SkillTiers
tbc only.type PrimaryKey = SkillTiersKey
Source§impl Indexable for wow_dbc::tbc_tables::sound_ambience::SoundAmbience
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::sound_ambience::SoundAmbience
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::sound_entries::SoundEntries
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::sound_entries::SoundEntries
tbc only.type PrimaryKey = SoundEntriesKey
Source§impl Indexable for wow_dbc::tbc_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::sound_provider_preferences::SoundProviderPreferences
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::sound_sample_preferences::SoundSamplePreferences
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::sound_water_type::SoundWaterType
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::sound_water_type::SoundWaterType
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spam_messages::SpamMessages
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spam_messages::SpamMessages
tbc only.type PrimaryKey = SpamMessagesKey
Source§impl Indexable for wow_dbc::tbc_tables::spell::Spell
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell::Spell
tbc only.type PrimaryKey = SpellKey
Source§impl Indexable for wow_dbc::tbc_tables::spell_cast_times::SpellCastTimes
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_cast_times::SpellCastTimes
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_category::SpellCategory
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_category::SpellCategory
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_chain_effects::SpellChainEffects
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_chain_effects::SpellChainEffects
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_dispel_type::SpellDispelType
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_dispel_type::SpellDispelType
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_duration::SpellDuration
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_duration::SpellDuration
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_focus_object::SpellFocusObject
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_focus_object::SpellFocusObject
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_icon::SpellIcon
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_icon::SpellIcon
tbc only.type PrimaryKey = SpellIconKey
Source§impl Indexable for wow_dbc::tbc_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_item_enchantment::SpellItemEnchantment
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_mechanic::SpellMechanic
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_mechanic::SpellMechanic
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_missile_motion::SpellMissileMotion
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_missile_motion::SpellMissileMotion
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_radius::SpellRadius
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_radius::SpellRadius
tbc only.type PrimaryKey = SpellRadiusKey
Source§impl Indexable for wow_dbc::tbc_tables::spell_range::SpellRange
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_range::SpellRange
tbc only.type PrimaryKey = SpellRangeKey
Source§impl Indexable for wow_dbc::tbc_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_shapeshift_form::SpellShapeshiftForm
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_visual::SpellVisual
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_visual::SpellVisual
tbc only.type PrimaryKey = SpellVisualKey
Source§impl Indexable for wow_dbc::tbc_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_visual_effect_name::SpellVisualEffectName
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_visual_kit::SpellVisualKit
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_visual_kit::SpellVisualKit
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::stable_slot_prices::StableSlotPrices
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::stable_slot_prices::StableSlotPrices
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::startup_strings::Startup_Strings
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::startup_strings::Startup_Strings
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::stationery::Stationery
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::stationery::Stationery
tbc only.type PrimaryKey = StationeryKey
Source§impl Indexable for wow_dbc::tbc_tables::string_lookups::StringLookups
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::string_lookups::StringLookups
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::summon_properties::SummonProperties
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::summon_properties::SummonProperties
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::talent::Talent
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::talent::Talent
tbc only.type PrimaryKey = TalentKey
Source§impl Indexable for wow_dbc::tbc_tables::talent_tab::TalentTab
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::talent_tab::TalentTab
tbc only.type PrimaryKey = TalentTabKey
Source§impl Indexable for wow_dbc::tbc_tables::taxi_nodes::TaxiNodes
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::taxi_nodes::TaxiNodes
tbc only.type PrimaryKey = TaxiNodesKey
Source§impl Indexable for wow_dbc::tbc_tables::taxi_path::TaxiPath
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::taxi_path::TaxiPath
tbc only.type PrimaryKey = TaxiPathKey
Source§impl Indexable for wow_dbc::tbc_tables::taxi_path_node::TaxiPathNode
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::taxi_path_node::TaxiPathNode
tbc only.type PrimaryKey = TaxiPathNodeKey
Source§impl Indexable for wow_dbc::tbc_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::terrain_type_sounds::TerrainTypeSounds
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::totem_category::TotemCategory
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::totem_category::TotemCategory
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::transport_animation::TransportAnimation
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::transport_animation::TransportAnimation
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::transport_physics::TransportPhysics
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::transport_physics::TransportPhysics
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::ui_sound_lookups::UISoundLookups
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::ui_sound_lookups::UISoundLookups
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::unit_blood::UnitBlood
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::unit_blood::UnitBlood
tbc only.type PrimaryKey = UnitBloodKey
Source§impl Indexable for wow_dbc::tbc_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::unit_blood_levels::UnitBloodLevels
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::video_hardware::VideoHardware
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::video_hardware::VideoHardware
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::vocal_ui_sounds::VocalUISounds
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::weapon_impact_sounds::WeaponImpactSounds
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::weapon_swing_sounds2::WeaponSwingSounds2
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::weather::Weather
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::weather::Weather
tbc only.type PrimaryKey = WeatherKey
Source§impl Indexable for wow_dbc::tbc_tables::wmo_area_table::WMOAreaTable
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::wmo_area_table::WMOAreaTable
tbc only.type PrimaryKey = WMOAreaTableKey
Source§impl Indexable for wow_dbc::tbc_tables::world_map_area::WorldMapArea
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::world_map_area::WorldMapArea
tbc only.type PrimaryKey = WorldMapAreaKey
Source§impl Indexable for wow_dbc::tbc_tables::world_map_continent::WorldMapContinent
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::world_map_continent::WorldMapContinent
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::world_map_overlay::WorldMapOverlay
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::world_map_overlay::WorldMapOverlay
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::world_map_transforms::WorldMapTransforms
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::world_map_transforms::WorldMapTransforms
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::world_safe_locs::WorldSafeLocs
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::world_safe_locs::WorldSafeLocs
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::world_state_ui::WorldStateUI
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::world_state_ui::WorldStateUI
tbc only.type PrimaryKey = WorldStateUIKey
Source§impl Indexable for wow_dbc::tbc_tables::wow_error_strings::WowError_Strings
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::wow_error_strings::WowError_Strings
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::zone_intro_music_table::ZoneIntroMusicTable
tbc only.Source§impl Indexable for wow_dbc::tbc_tables::zone_music::ZoneMusic
Available on crate feature tbc only.
impl Indexable for wow_dbc::tbc_tables::zone_music::ZoneMusic
tbc only.type PrimaryKey = ZoneMusicKey
Source§impl Indexable for wow_dbc::vanilla_tables::animation_data::AnimationData
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::animation_data::AnimationData
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::area_poi::AreaPOI
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::area_poi::AreaPOI
vanilla only.type PrimaryKey = AreaPOIKey
Source§impl Indexable for wow_dbc::vanilla_tables::area_table::AreaTable
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::area_table::AreaTable
vanilla only.type PrimaryKey = AreaTableKey
Source§impl Indexable for wow_dbc::vanilla_tables::area_trigger::AreaTrigger
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::area_trigger::AreaTrigger
vanilla only.type PrimaryKey = AreaTriggerKey
Source§impl Indexable for wow_dbc::vanilla_tables::attack_anim_kits::AttackAnimKits
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::attack_anim_kits::AttackAnimKits
vanilla only.Source§impl Indexable for AttackAnimTypes
Available on crate feature vanilla only.
impl Indexable for AttackAnimTypes
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::auction_house::AuctionHouse
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::auction_house::AuctionHouse
vanilla only.type PrimaryKey = AuctionHouseKey
Source§impl Indexable for wow_dbc::vanilla_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::bank_bag_slot_prices::BankBagSlotPrices
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::camera_shakes::CameraShakes
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::camera_shakes::CameraShakes
vanilla only.type PrimaryKey = CameraShakesKey
Source§impl Indexable for wow_dbc::vanilla_tables::cfg_configs::Cfg_Configs
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::cfg_configs::Cfg_Configs
vanilla only.type PrimaryKey = Cfg_ConfigsKey
Source§impl Indexable for wow_dbc::vanilla_tables::char_hair_geosets::CharHairGeosets
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::char_hair_geosets::CharHairGeosets
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::char_hair_textures::CharHairTextures
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::char_hair_textures::CharHairTextures
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::char_sections::CharSections
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::char_sections::CharSections
vanilla only.type PrimaryKey = CharSectionsKey
Source§impl Indexable for wow_dbc::vanilla_tables::char_start_outfit::CharStartOutfit
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::char_start_outfit::CharStartOutfit
vanilla only.Source§impl Indexable for CharacterCreateCameras
Available on crate feature vanilla only.
impl Indexable for CharacterCreateCameras
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::chat_channels::ChatChannels
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::chat_channels::ChatChannels
vanilla only.type PrimaryKey = ChatChannelsKey
Source§impl Indexable for wow_dbc::vanilla_tables::chat_profanity::ChatProfanity
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::chat_profanity::ChatProfanity
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::chr_classes::ChrClasses
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::chr_classes::ChrClasses
vanilla only.type PrimaryKey = ChrClassesKey
Source§impl Indexable for wow_dbc::vanilla_tables::chr_races::ChrRaces
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::chr_races::ChrRaces
vanilla only.type PrimaryKey = ChrRacesKey
Source§impl Indexable for wow_dbc::vanilla_tables::cinematic_camera::CinematicCamera
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::cinematic_camera::CinematicCamera
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::cinematic_sequences::CinematicSequences
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::cinematic_sequences::CinematicSequences
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::creature_display_info::CreatureDisplayInfo
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::creature_display_info_extra::CreatureDisplayInfoExtra
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::creature_family::CreatureFamily
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::creature_family::CreatureFamily
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::creature_model_data::CreatureModelData
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::creature_model_data::CreatureModelData
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::creature_sound_data::CreatureSoundData
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::creature_sound_data::CreatureSoundData
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::creature_spell_data::CreatureSpellData
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::creature_spell_data::CreatureSpellData
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::creature_type::CreatureType
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::creature_type::CreatureType
vanilla only.type PrimaryKey = CreatureTypeKey
Source§impl Indexable for wow_dbc::vanilla_tables::death_thud_lookups::DeathThudLookups
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::death_thud_lookups::DeathThudLookups
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::durability_costs::DurabilityCosts
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::durability_costs::DurabilityCosts
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::durability_quality::DurabilityQuality
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::durability_quality::DurabilityQuality
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::emotes::Emotes
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::emotes::Emotes
vanilla only.type PrimaryKey = EmotesKey
Source§impl Indexable for wow_dbc::vanilla_tables::emotes_text::EmotesText
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::emotes_text::EmotesText
vanilla only.type PrimaryKey = EmotesTextKey
Source§impl Indexable for wow_dbc::vanilla_tables::emotes_text_data::EmotesTextData
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::emotes_text_data::EmotesTextData
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::emotes_text_sound::EmotesTextSound
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::emotes_text_sound::EmotesTextSound
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::environmental_damage::EnvironmentalDamage
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::environmental_damage::EnvironmentalDamage
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::exhaustion::Exhaustion
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::exhaustion::Exhaustion
vanilla only.type PrimaryKey = ExhaustionKey
Source§impl Indexable for wow_dbc::vanilla_tables::faction::Faction
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::faction::Faction
vanilla only.type PrimaryKey = FactionKey
Source§impl Indexable for wow_dbc::vanilla_tables::faction_group::FactionGroup
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::faction_group::FactionGroup
vanilla only.type PrimaryKey = FactionGroupKey
Source§impl Indexable for wow_dbc::vanilla_tables::faction_template::FactionTemplate
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::faction_template::FactionTemplate
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::footprint_textures::FootprintTextures
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::footprint_textures::FootprintTextures
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::footstep_terrain_lookup::FootstepTerrainLookup
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::game_object_art_kit::GameObjectArtKit
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::game_object_display_info::GameObjectDisplayInfo
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::game_tips::GameTips
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::game_tips::GameTips
vanilla only.type PrimaryKey = GameTipsKey
Source§impl Indexable for wow_dbc::vanilla_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::gm_survey_questions::GMSurveyQuestions
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::gm_survey_surveys::GMSurveySurveys
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::gm_ticket_category::GMTicketCategory
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::gm_ticket_category::GMTicketCategory
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::ground_effect_doodad::GroundEffectDoodad
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::ground_effect_texture::GroundEffectTexture
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::helmet_geoset_vis_data::HelmetGeosetVisData
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::item_bag_family::ItemBagFamily
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_bag_family::ItemBagFamily
vanilla only.Source§impl Indexable for ItemClass
Available on crate feature vanilla only.
impl Indexable for ItemClass
vanilla only.type PrimaryKey = ItemClassKey
Source§impl Indexable for wow_dbc::vanilla_tables::item_display_info::ItemDisplayInfo
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_display_info::ItemDisplayInfo
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::item_group_sounds::ItemGroupSounds
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_group_sounds::ItemGroupSounds
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::item_pet_food::ItemPetFood
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_pet_food::ItemPetFood
vanilla only.type PrimaryKey = ItemPetFoodKey
Source§impl Indexable for wow_dbc::vanilla_tables::item_random_properties::ItemRandomProperties
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_random_properties::ItemRandomProperties
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::item_set::ItemSet
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_set::ItemSet
vanilla only.type PrimaryKey = ItemSetKey
Source§impl Indexable for wow_dbc::vanilla_tables::item_visual_effects::ItemVisualEffects
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_visual_effects::ItemVisualEffects
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::item_visuals::ItemVisuals
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::item_visuals::ItemVisuals
vanilla only.type PrimaryKey = ItemVisualsKey
Source§impl Indexable for wow_dbc::vanilla_tables::language_words::LanguageWords
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::language_words::LanguageWords
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::languages::Languages
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::languages::Languages
vanilla only.type PrimaryKey = LanguagesKey
Source§impl Indexable for wow_dbc::vanilla_tables::lfg_dungeons::LFGDungeons
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::lfg_dungeons::LFGDungeons
vanilla only.type PrimaryKey = LFGDungeonsKey
Source§impl Indexable for wow_dbc::vanilla_tables::light::Light
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::light::Light
vanilla only.type PrimaryKey = LightKey
Source§impl Indexable for wow_dbc::vanilla_tables::light_float_band::LightFloatBand
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::light_float_band::LightFloatBand
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::light_int_band::LightIntBand
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::light_int_band::LightIntBand
vanilla only.type PrimaryKey = LightIntBandKey
Source§impl Indexable for wow_dbc::vanilla_tables::light_params::LightParams
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::light_params::LightParams
vanilla only.type PrimaryKey = LightParamsKey
Source§impl Indexable for wow_dbc::vanilla_tables::light_skybox::LightSkybox
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::light_skybox::LightSkybox
vanilla only.type PrimaryKey = LightSkyboxKey
Source§impl Indexable for wow_dbc::vanilla_tables::liquid_type::LiquidType
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::liquid_type::LiquidType
vanilla only.type PrimaryKey = LiquidTypeKey
Source§impl Indexable for wow_dbc::vanilla_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::loading_screens::LoadingScreens
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::loading_screens::LoadingScreens
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::lock::Lock
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::lock::Lock
vanilla only.type PrimaryKey = LockKey
Source§impl Indexable for wow_dbc::vanilla_tables::lock_type::LockType
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::lock_type::LockType
vanilla only.type PrimaryKey = LockTypeKey
Source§impl Indexable for wow_dbc::vanilla_tables::mail_template::MailTemplate
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::mail_template::MailTemplate
vanilla only.type PrimaryKey = MailTemplateKey
Source§impl Indexable for wow_dbc::vanilla_tables::map::Map
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::map::Map
vanilla only.type PrimaryKey = MapKey
Source§impl Indexable for wow_dbc::vanilla_tables::material::Material
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::material::Material
vanilla only.type PrimaryKey = MaterialKey
Source§impl Indexable for wow_dbc::vanilla_tables::name_gen::NameGen
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::name_gen::NameGen
vanilla only.type PrimaryKey = NameGenKey
Source§impl Indexable for wow_dbc::vanilla_tables::names_profanity::NamesProfanity
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::names_profanity::NamesProfanity
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::names_reserved::NamesReserved
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::names_reserved::NamesReserved
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::npc_sounds::NPCSounds
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::npc_sounds::NPCSounds
vanilla only.type PrimaryKey = NPCSoundsKey
Source§impl Indexable for wow_dbc::vanilla_tables::package::Package
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::package::Package
vanilla only.type PrimaryKey = PackageKey
Source§impl Indexable for wow_dbc::vanilla_tables::page_text_material::PageTextMaterial
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::page_text_material::PageTextMaterial
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::pet_loyalty::PetLoyalty
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::pet_loyalty::PetLoyalty
vanilla only.type PrimaryKey = PetLoyaltyKey
Source§impl Indexable for wow_dbc::vanilla_tables::pet_personality::PetPersonality
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::pet_personality::PetPersonality
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::quest_info::QuestInfo
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::quest_info::QuestInfo
vanilla only.type PrimaryKey = QuestInfoKey
Source§impl Indexable for wow_dbc::vanilla_tables::quest_sort::QuestSort
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::quest_sort::QuestSort
vanilla only.type PrimaryKey = QuestSortKey
Source§impl Indexable for wow_dbc::vanilla_tables::resistances::Resistances
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::resistances::Resistances
vanilla only.type PrimaryKey = ResistancesKey
Source§impl Indexable for wow_dbc::vanilla_tables::server_messages::ServerMessages
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::server_messages::ServerMessages
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::sheathe_sound_lookups::SheatheSoundLookups
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::skill_costs_data::SkillCostsData
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::skill_costs_data::SkillCostsData
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::skill_line::SkillLine
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::skill_line::SkillLine
vanilla only.type PrimaryKey = SkillLineKey
Source§impl Indexable for wow_dbc::vanilla_tables::skill_line_ability::SkillLineAbility
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::skill_line_ability::SkillLineAbility
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::skill_line_category::SkillLineCategory
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::skill_line_category::SkillLineCategory
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::skill_race_class_info::SkillRaceClassInfo
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::skill_tiers::SkillTiers
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::skill_tiers::SkillTiers
vanilla only.type PrimaryKey = SkillTiersKey
Source§impl Indexable for wow_dbc::vanilla_tables::sound_ambience::SoundAmbience
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::sound_ambience::SoundAmbience
vanilla only.Source§impl Indexable for SoundCharacterMacroLines
Available on crate feature vanilla only.
impl Indexable for SoundCharacterMacroLines
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::sound_entries::SoundEntries
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::sound_entries::SoundEntries
vanilla only.type PrimaryKey = SoundEntriesKey
Source§impl Indexable for wow_dbc::vanilla_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::sound_provider_preferences::SoundProviderPreferences
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::sound_sample_preferences::SoundSamplePreferences
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::sound_water_type::SoundWaterType
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::sound_water_type::SoundWaterType
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spam_messages::SpamMessages
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spam_messages::SpamMessages
vanilla only.type PrimaryKey = SpamMessagesKey
Source§impl Indexable for wow_dbc::vanilla_tables::spell::Spell
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell::Spell
vanilla only.type PrimaryKey = SpellKey
Source§impl Indexable for SpellAuraNames
Available on crate feature vanilla only.
impl Indexable for SpellAuraNames
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_cast_times::SpellCastTimes
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_cast_times::SpellCastTimes
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_category::SpellCategory
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_category::SpellCategory
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_chain_effects::SpellChainEffects
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_chain_effects::SpellChainEffects
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_dispel_type::SpellDispelType
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_dispel_type::SpellDispelType
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_duration::SpellDuration
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_duration::SpellDuration
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
vanilla only.Source§impl Indexable for SpellEffectNames
Available on crate feature vanilla only.
impl Indexable for SpellEffectNames
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_focus_object::SpellFocusObject
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_focus_object::SpellFocusObject
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_icon::SpellIcon
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_icon::SpellIcon
vanilla only.type PrimaryKey = SpellIconKey
Source§impl Indexable for wow_dbc::vanilla_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_item_enchantment::SpellItemEnchantment
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_mechanic::SpellMechanic
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_mechanic::SpellMechanic
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_radius::SpellRadius
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_radius::SpellRadius
vanilla only.type PrimaryKey = SpellRadiusKey
Source§impl Indexable for wow_dbc::vanilla_tables::spell_range::SpellRange
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_range::SpellRange
vanilla only.type PrimaryKey = SpellRangeKey
Source§impl Indexable for wow_dbc::vanilla_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_shapeshift_form::SpellShapeshiftForm
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_visual::SpellVisual
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_visual::SpellVisual
vanilla only.type PrimaryKey = SpellVisualKey
Source§impl Indexable for wow_dbc::vanilla_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_visual_effect_name::SpellVisualEffectName
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_visual_kit::SpellVisualKit
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_visual_kit::SpellVisualKit
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::stable_slot_prices::StableSlotPrices
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::stable_slot_prices::StableSlotPrices
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::startup_strings::Startup_Strings
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::startup_strings::Startup_Strings
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::stationery::Stationery
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::stationery::Stationery
vanilla only.type PrimaryKey = StationeryKey
Source§impl Indexable for wow_dbc::vanilla_tables::string_lookups::StringLookups
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::string_lookups::StringLookups
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::talent::Talent
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::talent::Talent
vanilla only.type PrimaryKey = TalentKey
Source§impl Indexable for wow_dbc::vanilla_tables::talent_tab::TalentTab
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::talent_tab::TalentTab
vanilla only.type PrimaryKey = TalentTabKey
Source§impl Indexable for wow_dbc::vanilla_tables::taxi_nodes::TaxiNodes
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::taxi_nodes::TaxiNodes
vanilla only.type PrimaryKey = TaxiNodesKey
Source§impl Indexable for wow_dbc::vanilla_tables::taxi_path::TaxiPath
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::taxi_path::TaxiPath
vanilla only.type PrimaryKey = TaxiPathKey
Source§impl Indexable for wow_dbc::vanilla_tables::taxi_path_node::TaxiPathNode
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::taxi_path_node::TaxiPathNode
vanilla only.type PrimaryKey = TaxiPathNodeKey
Source§impl Indexable for TerrainType
Available on crate feature vanilla only.
impl Indexable for TerrainType
vanilla only.type PrimaryKey = TerrainTypeKey
Source§impl Indexable for wow_dbc::vanilla_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::terrain_type_sounds::TerrainTypeSounds
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::transport_animation::TransportAnimation
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::transport_animation::TransportAnimation
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::ui_sound_lookups::UISoundLookups
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::ui_sound_lookups::UISoundLookups
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::unit_blood::UnitBlood
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::unit_blood::UnitBlood
vanilla only.type PrimaryKey = UnitBloodKey
Source§impl Indexable for wow_dbc::vanilla_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::unit_blood_levels::UnitBloodLevels
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::video_hardware::VideoHardware
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::video_hardware::VideoHardware
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::vocal_ui_sounds::VocalUISounds
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::weapon_impact_sounds::WeaponImpactSounds
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::weapon_swing_sounds2::WeaponSwingSounds2
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::wmo_area_table::WMOAreaTable
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::wmo_area_table::WMOAreaTable
vanilla only.type PrimaryKey = WMOAreaTableKey
Source§impl Indexable for wow_dbc::vanilla_tables::world_map_area::WorldMapArea
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::world_map_area::WorldMapArea
vanilla only.type PrimaryKey = WorldMapAreaKey
Source§impl Indexable for wow_dbc::vanilla_tables::world_map_continent::WorldMapContinent
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::world_map_continent::WorldMapContinent
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::world_map_overlay::WorldMapOverlay
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::world_map_overlay::WorldMapOverlay
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::world_safe_locs::WorldSafeLocs
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::world_safe_locs::WorldSafeLocs
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::world_state_ui::WorldStateUI
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::world_state_ui::WorldStateUI
vanilla only.type PrimaryKey = WorldStateUIKey
Source§impl Indexable for wow_dbc::vanilla_tables::wow_error_strings::WowError_Strings
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::wow_error_strings::WowError_Strings
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::zone_intro_music_table::ZoneIntroMusicTable
vanilla only.Source§impl Indexable for wow_dbc::vanilla_tables::zone_music::ZoneMusic
Available on crate feature vanilla only.
impl Indexable for wow_dbc::vanilla_tables::zone_music::ZoneMusic
vanilla only.type PrimaryKey = ZoneMusicKey
Source§impl Indexable for Achievement
Available on crate feature wrath only.
impl Indexable for Achievement
wrath only.type PrimaryKey = AchievementKey
Source§impl Indexable for Achievement_Category
Available on crate feature wrath only.
impl Indexable for Achievement_Category
wrath only.Source§impl Indexable for Achievement_Criteria
Available on crate feature wrath only.
impl Indexable for Achievement_Criteria
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::animation_data::AnimationData
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::animation_data::AnimationData
wrath only.Source§impl Indexable for AreaGroup
Available on crate feature wrath only.
impl Indexable for AreaGroup
wrath only.type PrimaryKey = AreaGroupKey
Source§impl Indexable for wow_dbc::wrath_tables::area_poi::AreaPOI
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::area_poi::AreaPOI
wrath only.type PrimaryKey = AreaPOIKey
Source§impl Indexable for wow_dbc::wrath_tables::area_table::AreaTable
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::area_table::AreaTable
wrath only.type PrimaryKey = AreaTableKey
Source§impl Indexable for wow_dbc::wrath_tables::area_trigger::AreaTrigger
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::area_trigger::AreaTrigger
wrath only.type PrimaryKey = AreaTriggerKey
Source§impl Indexable for wow_dbc::wrath_tables::attack_anim_kits::AttackAnimKits
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::attack_anim_kits::AttackAnimKits
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::auction_house::AuctionHouse
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::auction_house::AuctionHouse
wrath only.type PrimaryKey = AuctionHouseKey
Source§impl Indexable for wow_dbc::wrath_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::bank_bag_slot_prices::BankBagSlotPrices
wrath only.Source§impl Indexable for BannedAddOns
Available on crate feature wrath only.
impl Indexable for BannedAddOns
wrath only.type PrimaryKey = BannedAddOnsKey
Source§impl Indexable for BarberShopStyle
Available on crate feature wrath only.
impl Indexable for BarberShopStyle
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::battlemaster_list::BattlemasterList
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::battlemaster_list::BattlemasterList
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::camera_shakes::CameraShakes
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::camera_shakes::CameraShakes
wrath only.type PrimaryKey = CameraShakesKey
Source§impl Indexable for wow_dbc::wrath_tables::cfg_categories::Cfg_Categories
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::cfg_categories::Cfg_Categories
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::cfg_configs::Cfg_Configs
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::cfg_configs::Cfg_Configs
wrath only.type PrimaryKey = Cfg_ConfigsKey
Source§impl Indexable for wow_dbc::wrath_tables::char_hair_geosets::CharHairGeosets
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::char_hair_geosets::CharHairGeosets
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::char_hair_textures::CharHairTextures
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::char_hair_textures::CharHairTextures
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::char_sections::CharSections
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::char_sections::CharSections
wrath only.type PrimaryKey = CharSectionsKey
Source§impl Indexable for wow_dbc::wrath_tables::char_start_outfit::CharStartOutfit
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::char_start_outfit::CharStartOutfit
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::char_titles::CharTitles
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::char_titles::CharTitles
wrath only.type PrimaryKey = CharTitlesKey
Source§impl Indexable for wow_dbc::wrath_tables::chat_channels::ChatChannels
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::chat_channels::ChatChannels
wrath only.type PrimaryKey = ChatChannelsKey
Source§impl Indexable for wow_dbc::wrath_tables::chat_profanity::ChatProfanity
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::chat_profanity::ChatProfanity
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::chr_classes::ChrClasses
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::chr_classes::ChrClasses
wrath only.type PrimaryKey = ChrClassesKey
Source§impl Indexable for wow_dbc::wrath_tables::chr_races::ChrRaces
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::chr_races::ChrRaces
wrath only.type PrimaryKey = ChrRacesKey
Source§impl Indexable for wow_dbc::wrath_tables::cinematic_camera::CinematicCamera
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::cinematic_camera::CinematicCamera
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::cinematic_sequences::CinematicSequences
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::cinematic_sequences::CinematicSequences
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::creature_display_info::CreatureDisplayInfo
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::creature_display_info_extra::CreatureDisplayInfoExtra
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::creature_family::CreatureFamily
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::creature_family::CreatureFamily
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::creature_model_data::CreatureModelData
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::creature_model_data::CreatureModelData
wrath only.Source§impl Indexable for CreatureMovementInfo
Available on crate feature wrath only.
impl Indexable for CreatureMovementInfo
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::creature_sound_data::CreatureSoundData
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::creature_sound_data::CreatureSoundData
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::creature_spell_data::CreatureSpellData
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::creature_spell_data::CreatureSpellData
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::creature_type::CreatureType
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::creature_type::CreatureType
wrath only.type PrimaryKey = CreatureTypeKey
Source§impl Indexable for CurrencyCategory
Available on crate feature wrath only.
impl Indexable for CurrencyCategory
wrath only.Source§impl Indexable for CurrencyTypes
Available on crate feature wrath only.
impl Indexable for CurrencyTypes
wrath only.Source§impl Indexable for DanceMoves
Available on crate feature wrath only.
impl Indexable for DanceMoves
wrath only.type PrimaryKey = DanceMovesKey
Source§impl Indexable for wow_dbc::wrath_tables::death_thud_lookups::DeathThudLookups
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::death_thud_lookups::DeathThudLookups
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::declined_word::DeclinedWord
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::declined_word::DeclinedWord
wrath only.type PrimaryKey = DeclinedWordKey
Source§impl Indexable for wow_dbc::wrath_tables::declined_word_cases::DeclinedWordCases
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::declined_word_cases::DeclinedWordCases
wrath only.Source§impl Indexable for DestructibleModelData
Available on crate feature wrath only.
impl Indexable for DestructibleModelData
wrath only.Source§impl Indexable for DungeonEncounter
Available on crate feature wrath only.
impl Indexable for DungeonEncounter
wrath only.Source§impl Indexable for DungeonMap
Available on crate feature wrath only.
impl Indexable for DungeonMap
wrath only.type PrimaryKey = DungeonMapKey
Source§impl Indexable for DungeonMapChunk
Available on crate feature wrath only.
impl Indexable for DungeonMapChunk
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::durability_costs::DurabilityCosts
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::durability_costs::DurabilityCosts
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::durability_quality::DurabilityQuality
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::durability_quality::DurabilityQuality
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::emotes::Emotes
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::emotes::Emotes
wrath only.type PrimaryKey = EmotesKey
Source§impl Indexable for wow_dbc::wrath_tables::emotes_text::EmotesText
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::emotes_text::EmotesText
wrath only.type PrimaryKey = EmotesTextKey
Source§impl Indexable for wow_dbc::wrath_tables::emotes_text_data::EmotesTextData
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::emotes_text_data::EmotesTextData
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::emotes_text_sound::EmotesTextSound
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::emotes_text_sound::EmotesTextSound
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::environmental_damage::EnvironmentalDamage
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::environmental_damage::EnvironmentalDamage
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::exhaustion::Exhaustion
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::exhaustion::Exhaustion
wrath only.type PrimaryKey = ExhaustionKey
Source§impl Indexable for wow_dbc::wrath_tables::faction::Faction
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::faction::Faction
wrath only.type PrimaryKey = FactionKey
Source§impl Indexable for wow_dbc::wrath_tables::faction_group::FactionGroup
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::faction_group::FactionGroup
wrath only.type PrimaryKey = FactionGroupKey
Source§impl Indexable for wow_dbc::wrath_tables::faction_template::FactionTemplate
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::faction_template::FactionTemplate
wrath only.Source§impl Indexable for FileData
Available on crate feature wrath only.
impl Indexable for FileData
wrath only.type PrimaryKey = FileDataKey
Source§impl Indexable for wow_dbc::wrath_tables::footprint_textures::FootprintTextures
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::footprint_textures::FootprintTextures
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::footstep_terrain_lookup::FootstepTerrainLookup
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::game_object_art_kit::GameObjectArtKit
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::game_object_display_info::GameObjectDisplayInfo
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::game_tips::GameTips
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::game_tips::GameTips
wrath only.type PrimaryKey = GameTipsKey
Source§impl Indexable for wow_dbc::wrath_tables::gem_properties::GemProperties
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::gem_properties::GemProperties
wrath only.Source§impl Indexable for GlyphProperties
Available on crate feature wrath only.
impl Indexable for GlyphProperties
wrath only.Source§impl Indexable for GlyphSlot
Available on crate feature wrath only.
impl Indexable for GlyphSlot
wrath only.type PrimaryKey = GlyphSlotKey
Source§impl Indexable for GMSurveyAnswers
Available on crate feature wrath only.
impl Indexable for GMSurveyAnswers
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::gm_survey_questions::GMSurveyQuestions
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::gm_survey_surveys::GMSurveySurveys
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::gm_ticket_category::GMTicketCategory
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::gm_ticket_category::GMTicketCategory
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::ground_effect_doodad::GroundEffectDoodad
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::ground_effect_texture::GroundEffectTexture
wrath only.Source§impl Indexable for gtOCTClassCombatRatingScalar
Available on crate feature wrath only.
impl Indexable for gtOCTClassCombatRatingScalar
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::helmet_geoset_vis_data::HelmetGeosetVisData
wrath only.Source§impl Indexable for HolidayDescriptions
Available on crate feature wrath only.
impl Indexable for HolidayDescriptions
wrath only.Source§impl Indexable for HolidayNames
Available on crate feature wrath only.
impl Indexable for HolidayNames
wrath only.type PrimaryKey = HolidayNamesKey
Source§impl Indexable for Holidays
Available on crate feature wrath only.
impl Indexable for Holidays
wrath only.type PrimaryKey = HolidaysKey
Source§impl Indexable for wow_dbc::wrath_tables::item::Item
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item::Item
wrath only.type PrimaryKey = ItemKey
Source§impl Indexable for wow_dbc::wrath_tables::item_bag_family::ItemBagFamily
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_bag_family::ItemBagFamily
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_cond_ext_costs::ItemCondExtCosts
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_cond_ext_costs::ItemCondExtCosts
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_display_info::ItemDisplayInfo
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_display_info::ItemDisplayInfo
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_extended_cost::ItemExtendedCost
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_extended_cost::ItemExtendedCost
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_group_sounds::ItemGroupSounds
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_group_sounds::ItemGroupSounds
wrath only.Source§impl Indexable for ItemLimitCategory
Available on crate feature wrath only.
impl Indexable for ItemLimitCategory
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_pet_food::ItemPetFood
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_pet_food::ItemPetFood
wrath only.type PrimaryKey = ItemPetFoodKey
Source§impl Indexable for ItemPurchaseGroup
Available on crate feature wrath only.
impl Indexable for ItemPurchaseGroup
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_random_properties::ItemRandomProperties
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_random_properties::ItemRandomProperties
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_random_suffix::ItemRandomSuffix
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_random_suffix::ItemRandomSuffix
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_set::ItemSet
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_set::ItemSet
wrath only.type PrimaryKey = ItemSetKey
Source§impl Indexable for wow_dbc::wrath_tables::item_visual_effects::ItemVisualEffects
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_visual_effects::ItemVisualEffects
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::item_visuals::ItemVisuals
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::item_visuals::ItemVisuals
wrath only.type PrimaryKey = ItemVisualsKey
Source§impl Indexable for wow_dbc::wrath_tables::language_words::LanguageWords
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::language_words::LanguageWords
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::languages::Languages
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::languages::Languages
wrath only.type PrimaryKey = LanguagesKey
Source§impl Indexable for LFGDungeonExpansion
Available on crate feature wrath only.
impl Indexable for LFGDungeonExpansion
wrath only.Source§impl Indexable for LFGDungeonGroup
Available on crate feature wrath only.
impl Indexable for LFGDungeonGroup
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::lfg_dungeons::LFGDungeons
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::lfg_dungeons::LFGDungeons
wrath only.type PrimaryKey = LFGDungeonsKey
Source§impl Indexable for wow_dbc::wrath_tables::light::Light
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::light::Light
wrath only.type PrimaryKey = LightKey
Source§impl Indexable for wow_dbc::wrath_tables::light_float_band::LightFloatBand
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::light_float_band::LightFloatBand
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::light_int_band::LightIntBand
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::light_int_band::LightIntBand
wrath only.type PrimaryKey = LightIntBandKey
Source§impl Indexable for wow_dbc::wrath_tables::light_params::LightParams
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::light_params::LightParams
wrath only.type PrimaryKey = LightParamsKey
Source§impl Indexable for wow_dbc::wrath_tables::light_skybox::LightSkybox
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::light_skybox::LightSkybox
wrath only.type PrimaryKey = LightSkyboxKey
Source§impl Indexable for LiquidMaterial
Available on crate feature wrath only.
impl Indexable for LiquidMaterial
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::liquid_type::LiquidType
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::liquid_type::LiquidType
wrath only.type PrimaryKey = LiquidTypeKey
Source§impl Indexable for wow_dbc::wrath_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::loading_screens::LoadingScreens
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::loading_screens::LoadingScreens
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::lock::Lock
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::lock::Lock
wrath only.type PrimaryKey = LockKey
Source§impl Indexable for wow_dbc::wrath_tables::lock_type::LockType
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::lock_type::LockType
wrath only.type PrimaryKey = LockTypeKey
Source§impl Indexable for wow_dbc::wrath_tables::mail_template::MailTemplate
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::mail_template::MailTemplate
wrath only.type PrimaryKey = MailTemplateKey
Source§impl Indexable for wow_dbc::wrath_tables::map::Map
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::map::Map
wrath only.type PrimaryKey = MapKey
Source§impl Indexable for MapDifficulty
Available on crate feature wrath only.
impl Indexable for MapDifficulty
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::material::Material
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::material::Material
wrath only.type PrimaryKey = MaterialKey
Source§impl Indexable for Movie
Available on crate feature wrath only.
impl Indexable for Movie
wrath only.type PrimaryKey = MovieKey
Source§impl Indexable for MovieVariation
Available on crate feature wrath only.
impl Indexable for MovieVariation
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::name_gen::NameGen
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::name_gen::NameGen
wrath only.type PrimaryKey = NameGenKey
Source§impl Indexable for wow_dbc::wrath_tables::names_profanity::NamesProfanity
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::names_profanity::NamesProfanity
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::names_reserved::NamesReserved
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::names_reserved::NamesReserved
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::npc_sounds::NPCSounds
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::npc_sounds::NPCSounds
wrath only.type PrimaryKey = NPCSoundsKey
Source§impl Indexable for ObjectEffect
Available on crate feature wrath only.
impl Indexable for ObjectEffect
wrath only.type PrimaryKey = ObjectEffectKey
Source§impl Indexable for ObjectEffectGroup
Available on crate feature wrath only.
impl Indexable for ObjectEffectGroup
wrath only.Source§impl Indexable for ObjectEffectModifier
Available on crate feature wrath only.
impl Indexable for ObjectEffectModifier
wrath only.Source§impl Indexable for ObjectEffectPackage
Available on crate feature wrath only.
impl Indexable for ObjectEffectPackage
wrath only.Source§impl Indexable for ObjectEffectPackageElem
Available on crate feature wrath only.
impl Indexable for ObjectEffectPackageElem
wrath only.Source§impl Indexable for OverrideSpellData
Available on crate feature wrath only.
impl Indexable for OverrideSpellData
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::package::Package
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::package::Package
wrath only.type PrimaryKey = PackageKey
Source§impl Indexable for wow_dbc::wrath_tables::page_text_material::PageTextMaterial
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::page_text_material::PageTextMaterial
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::particle_color::ParticleColor
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::particle_color::ParticleColor
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::pet_personality::PetPersonality
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::pet_personality::PetPersonality
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::petition_type::PetitionType
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::petition_type::PetitionType
wrath only.type PrimaryKey = PetitionTypeKey
Source§impl Indexable for PowerDisplay
Available on crate feature wrath only.
impl Indexable for PowerDisplay
wrath only.type PrimaryKey = PowerDisplayKey
Source§impl Indexable for PvpDifficulty
Available on crate feature wrath only.
impl Indexable for PvpDifficulty
wrath only.Source§impl Indexable for QuestFactionReward
Available on crate feature wrath only.
impl Indexable for QuestFactionReward
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::quest_info::QuestInfo
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::quest_info::QuestInfo
wrath only.type PrimaryKey = QuestInfoKey
Source§impl Indexable for wow_dbc::wrath_tables::quest_sort::QuestSort
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::quest_sort::QuestSort
wrath only.type PrimaryKey = QuestSortKey
Source§impl Indexable for QuestXP
Available on crate feature wrath only.
impl Indexable for QuestXP
wrath only.type PrimaryKey = QuestXPKey
Source§impl Indexable for wow_dbc::wrath_tables::rand_prop_points::RandPropPoints
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::rand_prop_points::RandPropPoints
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::resistances::Resistances
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::resistances::Resistances
wrath only.type PrimaryKey = ResistancesKey
Source§impl Indexable for ScalingStatDistribution
Available on crate feature wrath only.
impl Indexable for ScalingStatDistribution
wrath only.Source§impl Indexable for ScalingStatValues
Available on crate feature wrath only.
impl Indexable for ScalingStatValues
wrath only.Source§impl Indexable for ScreenEffect
Available on crate feature wrath only.
impl Indexable for ScreenEffect
wrath only.type PrimaryKey = ScreenEffectKey
Source§impl Indexable for wow_dbc::wrath_tables::server_messages::ServerMessages
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::server_messages::ServerMessages
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::sheathe_sound_lookups::SheatheSoundLookups
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::skill_costs_data::SkillCostsData
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::skill_costs_data::SkillCostsData
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::skill_line::SkillLine
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::skill_line::SkillLine
wrath only.type PrimaryKey = SkillLineKey
Source§impl Indexable for wow_dbc::wrath_tables::skill_line_ability::SkillLineAbility
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::skill_line_ability::SkillLineAbility
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::skill_line_category::SkillLineCategory
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::skill_line_category::SkillLineCategory
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::skill_race_class_info::SkillRaceClassInfo
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::skill_tiers::SkillTiers
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::skill_tiers::SkillTiers
wrath only.type PrimaryKey = SkillTiersKey
Source§impl Indexable for wow_dbc::wrath_tables::sound_ambience::SoundAmbience
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::sound_ambience::SoundAmbience
wrath only.Source§impl Indexable for SoundEmitters
Available on crate feature wrath only.
impl Indexable for SoundEmitters
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::sound_entries::SoundEntries
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::sound_entries::SoundEntries
wrath only.type PrimaryKey = SoundEntriesKey
Source§impl Indexable for SoundEntriesAdvanced
Available on crate feature wrath only.
impl Indexable for SoundEntriesAdvanced
wrath only.Source§impl Indexable for SoundFilter
Available on crate feature wrath only.
impl Indexable for SoundFilter
wrath only.type PrimaryKey = SoundFilterKey
Source§impl Indexable for SoundFilterElem
Available on crate feature wrath only.
impl Indexable for SoundFilterElem
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::sound_provider_preferences::SoundProviderPreferences
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::sound_sample_preferences::SoundSamplePreferences
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::sound_water_type::SoundWaterType
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::sound_water_type::SoundWaterType
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spam_messages::SpamMessages
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spam_messages::SpamMessages
wrath only.type PrimaryKey = SpamMessagesKey
Source§impl Indexable for wow_dbc::wrath_tables::spell::Spell
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell::Spell
wrath only.type PrimaryKey = SpellKey
Source§impl Indexable for wow_dbc::wrath_tables::spell_cast_times::SpellCastTimes
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_cast_times::SpellCastTimes
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_category::SpellCategory
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_category::SpellCategory
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_chain_effects::SpellChainEffects
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_chain_effects::SpellChainEffects
wrath only.Source§impl Indexable for SpellDescriptionVariables
Available on crate feature wrath only.
impl Indexable for SpellDescriptionVariables
wrath only.Source§impl Indexable for SpellDifficulty
Available on crate feature wrath only.
impl Indexable for SpellDifficulty
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_dispel_type::SpellDispelType
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_dispel_type::SpellDispelType
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_duration::SpellDuration
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_duration::SpellDuration
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_focus_object::SpellFocusObject
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_focus_object::SpellFocusObject
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_icon::SpellIcon
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_icon::SpellIcon
wrath only.type PrimaryKey = SpellIconKey
Source§impl Indexable for wow_dbc::wrath_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_item_enchantment::SpellItemEnchantment
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_mechanic::SpellMechanic
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_mechanic::SpellMechanic
wrath only.Source§impl Indexable for SpellMissile
Available on crate feature wrath only.
impl Indexable for SpellMissile
wrath only.type PrimaryKey = SpellMissileKey
Source§impl Indexable for wow_dbc::wrath_tables::spell_missile_motion::SpellMissileMotion
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_missile_motion::SpellMissileMotion
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_radius::SpellRadius
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_radius::SpellRadius
wrath only.type PrimaryKey = SpellRadiusKey
Source§impl Indexable for wow_dbc::wrath_tables::spell_range::SpellRange
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_range::SpellRange
wrath only.type PrimaryKey = SpellRangeKey
Source§impl Indexable for SpellRuneCost
Available on crate feature wrath only.
impl Indexable for SpellRuneCost
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_shapeshift_form::SpellShapeshiftForm
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_visual::SpellVisual
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_visual::SpellVisual
wrath only.type PrimaryKey = SpellVisualKey
Source§impl Indexable for wow_dbc::wrath_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_visual_effect_name::SpellVisualEffectName
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_visual_kit::SpellVisualKit
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_visual_kit::SpellVisualKit
wrath only.Source§impl Indexable for SpellVisualKitAreaModel
Available on crate feature wrath only.
impl Indexable for SpellVisualKitAreaModel
wrath only.Source§impl Indexable for SpellVisualKitModelAttach
Available on crate feature wrath only.
impl Indexable for SpellVisualKitModelAttach
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::stable_slot_prices::StableSlotPrices
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::stable_slot_prices::StableSlotPrices
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::startup_strings::Startup_Strings
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::startup_strings::Startup_Strings
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::stationery::Stationery
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::stationery::Stationery
wrath only.type PrimaryKey = StationeryKey
Source§impl Indexable for wow_dbc::wrath_tables::string_lookups::StringLookups
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::string_lookups::StringLookups
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::summon_properties::SummonProperties
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::summon_properties::SummonProperties
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::talent::Talent
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::talent::Talent
wrath only.type PrimaryKey = TalentKey
Source§impl Indexable for wow_dbc::wrath_tables::talent_tab::TalentTab
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::talent_tab::TalentTab
wrath only.type PrimaryKey = TalentTabKey
Source§impl Indexable for wow_dbc::wrath_tables::taxi_nodes::TaxiNodes
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::taxi_nodes::TaxiNodes
wrath only.type PrimaryKey = TaxiNodesKey
Source§impl Indexable for wow_dbc::wrath_tables::taxi_path::TaxiPath
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::taxi_path::TaxiPath
wrath only.type PrimaryKey = TaxiPathKey
Source§impl Indexable for wow_dbc::wrath_tables::taxi_path_node::TaxiPathNode
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::taxi_path_node::TaxiPathNode
wrath only.type PrimaryKey = TaxiPathNodeKey
Source§impl Indexable for TeamContributionPoints
Available on crate feature wrath only.
impl Indexable for TeamContributionPoints
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::terrain_type_sounds::TerrainTypeSounds
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::totem_category::TotemCategory
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::totem_category::TotemCategory
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::transport_animation::TransportAnimation
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::transport_animation::TransportAnimation
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::transport_physics::TransportPhysics
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::transport_physics::TransportPhysics
wrath only.Source§impl Indexable for TransportRotation
Available on crate feature wrath only.
impl Indexable for TransportRotation
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::ui_sound_lookups::UISoundLookups
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::ui_sound_lookups::UISoundLookups
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::unit_blood::UnitBlood
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::unit_blood::UnitBlood
wrath only.type PrimaryKey = UnitBloodKey
Source§impl Indexable for wow_dbc::wrath_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::unit_blood_levels::UnitBloodLevels
wrath only.Source§impl Indexable for Vehicle
Available on crate feature wrath only.
impl Indexable for Vehicle
wrath only.type PrimaryKey = VehicleKey
Source§impl Indexable for VehicleSeat
Available on crate feature wrath only.
impl Indexable for VehicleSeat
wrath only.type PrimaryKey = VehicleSeatKey
Source§impl Indexable for VehicleUIIndSeat
Available on crate feature wrath only.
impl Indexable for VehicleUIIndSeat
wrath only.Source§impl Indexable for VehicleUIIndicator
Available on crate feature wrath only.
impl Indexable for VehicleUIIndicator
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::video_hardware::VideoHardware
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::video_hardware::VideoHardware
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::vocal_ui_sounds::VocalUISounds
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::weapon_impact_sounds::WeaponImpactSounds
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::weapon_swing_sounds2::WeaponSwingSounds2
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::weather::Weather
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::weather::Weather
wrath only.type PrimaryKey = WeatherKey
Source§impl Indexable for wow_dbc::wrath_tables::wmo_area_table::WMOAreaTable
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::wmo_area_table::WMOAreaTable
wrath only.type PrimaryKey = WMOAreaTableKey
Source§impl Indexable for WorldChunkSounds
Available on crate feature wrath only.
impl Indexable for WorldChunkSounds
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::world_map_area::WorldMapArea
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::world_map_area::WorldMapArea
wrath only.type PrimaryKey = WorldMapAreaKey
Source§impl Indexable for wow_dbc::wrath_tables::world_map_continent::WorldMapContinent
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::world_map_continent::WorldMapContinent
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::world_map_overlay::WorldMapOverlay
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::world_map_overlay::WorldMapOverlay
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::world_map_transforms::WorldMapTransforms
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::world_map_transforms::WorldMapTransforms
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::world_safe_locs::WorldSafeLocs
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::world_safe_locs::WorldSafeLocs
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::world_state_ui::WorldStateUI
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::world_state_ui::WorldStateUI
wrath only.type PrimaryKey = WorldStateUIKey
Source§impl Indexable for wow_dbc::wrath_tables::wow_error_strings::WowError_Strings
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::wow_error_strings::WowError_Strings
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::zone_intro_music_table::ZoneIntroMusicTable
wrath only.Source§impl Indexable for wow_dbc::wrath_tables::zone_music::ZoneMusic
Available on crate feature wrath only.
impl Indexable for wow_dbc::wrath_tables::zone_music::ZoneMusic
wrath only.