pub trait DbcTable: Sized {
type Row;
const FILENAME: &'static str;
// Required methods
fn rows(&self) -> &[Self::Row];
fn rows_mut(&mut self) -> &mut [Self::Row];
fn read(b: &mut impl Read) -> Result<Self, DbcError>;
fn write(&self, w: &mut impl Write) -> Result<(), Error>;
}
Expand description
Main trait for the crate. Implemented by all tables in vanilla_tables
.
Required Associated Constants§
Required Associated Types§
Required Methods§
Sourcefn rows_mut(&mut self) -> &mut [Self::Row]
fn rows_mut(&mut self) -> &mut [Self::Row]
Mutable array of all rows. Are not guaranteed to be in any order.
Sourcefn read(b: &mut impl Read) -> Result<Self, DbcError>
fn read(b: &mut impl Read) -> Result<Self, DbcError>
Read table from bytes.
§Errors
Returns the same errors as Read::read_exact
.
Will error with InvalidHeaderError
if the magic numbers (0x43424457
) at the start of the file do not match.
Sourcefn write(&self, w: &mut impl Write) -> Result<(), Error>
fn write(&self, w: &mut impl Write) -> Result<(), Error>
Write to bytes.
The string block will always start with a zero byte so that a string index of 0 is always an empty string.
This is not guaranteed to create the exact same binary as is shipped with the game, but it will be semantically the same.
§Errors
Returns the same errors as Write::write_all
.
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 DbcTable for wow_dbc::tbc_tables::animation_data::AnimationData
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::animation_data::AnimationData
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::area_table::AreaTable
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::area_table::AreaTable
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::area_trigger::AreaTrigger
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::area_trigger::AreaTrigger
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::attack_anim_kits::AttackAnimKits
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::attack_anim_kits::AttackAnimKits
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::attack_anim_types::AttackAnimTypes
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::attack_anim_types::AttackAnimTypes
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::auction_house::AuctionHouse
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::auction_house::AuctionHouse
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::battlemaster_list::BattlemasterList
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::battlemaster_list::BattlemasterList
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::camera_shakes::CameraShakes
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::camera_shakes::CameraShakes
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::cfg_categories::Cfg_Categories
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::cfg_categories::Cfg_Categories
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::cfg_configs::Cfg_Configs
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::cfg_configs::Cfg_Configs
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::char_base_info::CharBaseInfo
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::char_base_info::CharBaseInfo
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::char_hair_geosets::CharHairGeosets
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::char_hair_geosets::CharHairGeosets
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::char_hair_textures::CharHairTextures
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::char_hair_textures::CharHairTextures
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::char_sections::CharSections
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::char_sections::CharSections
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::char_start_outfit::CharStartOutfit
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::char_start_outfit::CharStartOutfit
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::char_titles::CharTitles
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::char_titles::CharTitles
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::char_variations::CharVariations
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::char_variations::CharVariations
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::character_facial_hair_styles::CharacterFacialHairStyles
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::character_facial_hair_styles::CharacterFacialHairStyles
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::chat_channels::ChatChannels
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::chat_channels::ChatChannels
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::chat_profanity::ChatProfanity
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::chat_profanity::ChatProfanity
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::chr_classes::ChrClasses
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::chr_classes::ChrClasses
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::chr_races::ChrRaces
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::chr_races::ChrRaces
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::cinematic_camera::CinematicCamera
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::cinematic_camera::CinematicCamera
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::cinematic_sequences::CinematicSequences
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::cinematic_sequences::CinematicSequences
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::creature_family::CreatureFamily
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::creature_family::CreatureFamily
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::creature_model_data::CreatureModelData
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::creature_model_data::CreatureModelData
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::creature_sound_data::CreatureSoundData
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::creature_sound_data::CreatureSoundData
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::creature_spell_data::CreatureSpellData
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::creature_spell_data::CreatureSpellData
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::creature_type::CreatureType
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::creature_type::CreatureType
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::death_thud_lookups::DeathThudLookups
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::death_thud_lookups::DeathThudLookups
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::declined_word::DeclinedWord
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::declined_word::DeclinedWord
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::declined_word_cases::DeclinedWordCases
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::declined_word_cases::DeclinedWordCases
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::durability_costs::DurabilityCosts
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::durability_costs::DurabilityCosts
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::durability_quality::DurabilityQuality
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::durability_quality::DurabilityQuality
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::emotes_text::EmotesText
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::emotes_text::EmotesText
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::emotes_text_data::EmotesTextData
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::emotes_text_data::EmotesTextData
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::emotes_text_sound::EmotesTextSound
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::emotes_text_sound::EmotesTextSound
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::environmental_damage::EnvironmentalDamage
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::environmental_damage::EnvironmentalDamage
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::exhaustion::Exhaustion
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::exhaustion::Exhaustion
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::faction_group::FactionGroup
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::faction_group::FactionGroup
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::faction_template::FactionTemplate
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::faction_template::FactionTemplate
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::footprint_textures::FootprintTextures
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::footprint_textures::FootprintTextures
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::game_tables::GameTables
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::game_tables::GameTables
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::game_tips::GameTips
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::game_tips::GameTips
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gem_properties::GemProperties
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gem_properties::GemProperties
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gm_ticket_category::GMTicketCategory
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gm_ticket_category::GMTicketCategory
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_melee_crit::gtChanceToMeleeCrit
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_melee_crit::gtChanceToMeleeCrit
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_melee_crit_base::gtChanceToMeleeCritBase
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_melee_crit_base::gtChanceToMeleeCritBase
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_spell_crit::gtChanceToSpellCrit
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_spell_crit::gtChanceToSpellCrit
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_spell_crit_base::gtChanceToSpellCritBase
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_spell_crit_base::gtChanceToSpellCritBase
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_combat_ratings::gtCombatRatings
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_combat_ratings::gtCombatRatings
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_npc_mana_cost_scaler::gtNPCManaCostScaler
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_npc_mana_cost_scaler::gtNPCManaCostScaler
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_oct_regen_hp::gtOCTRegenHP
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_oct_regen_hp::gtOCTRegenHP
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_oct_regen_mp::gtOCTRegenMP
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_oct_regen_mp::gtOCTRegenMP
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_regen_hp_per_spt::gtRegenHPPerSpt
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_regen_hp_per_spt::gtRegenHPPerSpt
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::gt_regen_mp_per_spt::gtRegenMPPerSpt
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::gt_regen_mp_per_spt::gtRegenMPPerSpt
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_bag_family::ItemBagFamily
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_bag_family::ItemBagFamily
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_class::ItemClass
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_class::ItemClass
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_cond_ext_costs::ItemCondExtCosts
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_cond_ext_costs::ItemCondExtCosts
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_display_info::ItemDisplayInfo
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_display_info::ItemDisplayInfo
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_extended_cost::ItemExtendedCost
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_extended_cost::ItemExtendedCost
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_group_sounds::ItemGroupSounds
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_group_sounds::ItemGroupSounds
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_pet_food::ItemPetFood
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_pet_food::ItemPetFood
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_random_properties::ItemRandomProperties
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_random_properties::ItemRandomProperties
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_random_suffix::ItemRandomSuffix
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_random_suffix::ItemRandomSuffix
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_sub_class::ItemSubClass
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_sub_class::ItemSubClass
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_sub_class_mask::ItemSubClassMask
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_sub_class_mask::ItemSubClassMask
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_visual_effects::ItemVisualEffects
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_visual_effects::ItemVisualEffects
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::item_visuals::ItemVisuals
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::item_visuals::ItemVisuals
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::language_words::LanguageWords
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::language_words::LanguageWords
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::languages::Languages
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::languages::Languages
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::lfg_dungeons::LFGDungeons
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::lfg_dungeons::LFGDungeons
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::light_float_band::LightFloatBand
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::light_float_band::LightFloatBand
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::light_int_band::LightIntBand
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::light_int_band::LightIntBand
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::light_params::LightParams
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::light_params::LightParams
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::light_skybox::LightSkybox
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::light_skybox::LightSkybox
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::liquid_type::LiquidType
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::liquid_type::LiquidType
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::loading_screens::LoadingScreens
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::loading_screens::LoadingScreens
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::lock_type::LockType
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::lock_type::LockType
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::mail_template::MailTemplate
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::mail_template::MailTemplate
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::material::Material
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::material::Material
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::names_profanity::NamesProfanity
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::names_profanity::NamesProfanity
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::names_reserved::NamesReserved
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::names_reserved::NamesReserved
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::npc_sounds::NPCSounds
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::npc_sounds::NPCSounds
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::page_text_material::PageTextMaterial
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::page_text_material::PageTextMaterial
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::paper_doll_item_frame::PaperDollItemFrame
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::paper_doll_item_frame::PaperDollItemFrame
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::particle_color::ParticleColor
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::particle_color::ParticleColor
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::pet_loyalty::PetLoyalty
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::pet_loyalty::PetLoyalty
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::pet_personality::PetPersonality
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::pet_personality::PetPersonality
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::petition_type::PetitionType
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::petition_type::PetitionType
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::quest_info::QuestInfo
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::quest_info::QuestInfo
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::quest_sort::QuestSort
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::quest_sort::QuestSort
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::rand_prop_points::RandPropPoints
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::rand_prop_points::RandPropPoints
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::resistances::Resistances
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::resistances::Resistances
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::server_messages::ServerMessages
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::server_messages::ServerMessages
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::skill_costs_data::SkillCostsData
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::skill_costs_data::SkillCostsData
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::skill_line::SkillLine
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::skill_line::SkillLine
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::skill_line_ability::SkillLineAbility
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::skill_line_ability::SkillLineAbility
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::skill_line_category::SkillLineCategory
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::skill_line_category::SkillLineCategory
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::skill_tiers::SkillTiers
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::skill_tiers::SkillTiers
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::sound_ambience::SoundAmbience
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::sound_ambience::SoundAmbience
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::sound_entries::SoundEntries
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::sound_entries::SoundEntries
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::sound_water_type::SoundWaterType
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::sound_water_type::SoundWaterType
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spam_messages::SpamMessages
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spam_messages::SpamMessages
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_cast_times::SpellCastTimes
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_cast_times::SpellCastTimes
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_category::SpellCategory
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_category::SpellCategory
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_chain_effects::SpellChainEffects
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_chain_effects::SpellChainEffects
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_dispel_type::SpellDispelType
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_dispel_type::SpellDispelType
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_duration::SpellDuration
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_duration::SpellDuration
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_focus_object::SpellFocusObject
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_focus_object::SpellFocusObject
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_icon::SpellIcon
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_icon::SpellIcon
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_mechanic::SpellMechanic
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_mechanic::SpellMechanic
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_missile_motion::SpellMissileMotion
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_missile_motion::SpellMissileMotion
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_radius::SpellRadius
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_radius::SpellRadius
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_range::SpellRange
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_range::SpellRange
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_visual::SpellVisual
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_visual::SpellVisual
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_visual_kit::SpellVisualKit
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_visual_kit::SpellVisualKit
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::stable_slot_prices::StableSlotPrices
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::stable_slot_prices::StableSlotPrices
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::startup_strings::Startup_Strings
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::startup_strings::Startup_Strings
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::stationery::Stationery
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::stationery::Stationery
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::string_lookups::StringLookups
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::string_lookups::StringLookups
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::summon_properties::SummonProperties
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::summon_properties::SummonProperties
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::talent_tab::TalentTab
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::talent_tab::TalentTab
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::taxi_nodes::TaxiNodes
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::taxi_nodes::TaxiNodes
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::taxi_path::TaxiPath
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::taxi_path::TaxiPath
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::taxi_path_node::TaxiPathNode
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::taxi_path_node::TaxiPathNode
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::terrain_type::TerrainType
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::terrain_type::TerrainType
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::totem_category::TotemCategory
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::totem_category::TotemCategory
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::transport_animation::TransportAnimation
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::transport_animation::TransportAnimation
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::transport_physics::TransportPhysics
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::transport_physics::TransportPhysics
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::ui_sound_lookups::UISoundLookups
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::ui_sound_lookups::UISoundLookups
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::unit_blood::UnitBlood
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::unit_blood::UnitBlood
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::video_hardware::VideoHardware
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::video_hardware::VideoHardware
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::wmo_area_table::WMOAreaTable
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::wmo_area_table::WMOAreaTable
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::world_map_area::WorldMapArea
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::world_map_area::WorldMapArea
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::world_map_continent::WorldMapContinent
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::world_map_continent::WorldMapContinent
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::world_map_overlay::WorldMapOverlay
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::world_map_overlay::WorldMapOverlay
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::world_map_transforms::WorldMapTransforms
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::world_map_transforms::WorldMapTransforms
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::world_safe_locs::WorldSafeLocs
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::world_safe_locs::WorldSafeLocs
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::world_state_ui::WorldStateUI
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::world_state_ui::WorldStateUI
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::world_state_zone_sounds::WorldStateZoneSounds
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::world_state_zone_sounds::WorldStateZoneSounds
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::wow_error_strings::WowError_Strings
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::wow_error_strings::WowError_Strings
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::tbc_tables::zone_music::ZoneMusic
Available on crate feature tbc
only.
impl DbcTable for wow_dbc::tbc_tables::zone_music::ZoneMusic
Available on crate feature
tbc
only.Source§impl DbcTable for wow_dbc::vanilla_tables::animation_data::AnimationData
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::animation_data::AnimationData
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::area_poi::AreaPOI
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::area_poi::AreaPOI
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::area_table::AreaTable
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::area_table::AreaTable
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::area_trigger::AreaTrigger
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::area_trigger::AreaTrigger
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::attack_anim_kits::AttackAnimKits
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::attack_anim_kits::AttackAnimKits
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::attack_anim_types::AttackAnimTypes
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::attack_anim_types::AttackAnimTypes
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::auction_house::AuctionHouse
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::auction_house::AuctionHouse
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::camera_shakes::CameraShakes
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::camera_shakes::CameraShakes
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::cfg_categories::Cfg_Categories
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::cfg_categories::Cfg_Categories
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::cfg_configs::Cfg_Configs
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::cfg_configs::Cfg_Configs
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::char_base_info::CharBaseInfo
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::char_base_info::CharBaseInfo
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::char_hair_geosets::CharHairGeosets
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::char_hair_geosets::CharHairGeosets
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::char_hair_textures::CharHairTextures
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::char_hair_textures::CharHairTextures
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::char_sections::CharSections
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::char_sections::CharSections
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::char_start_outfit::CharStartOutfit
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::char_start_outfit::CharStartOutfit
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::char_variations::CharVariations
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::char_variations::CharVariations
Available on crate feature
vanilla
only.Source§impl DbcTable for CharacterCreateCameras
Available on crate feature vanilla
only.
impl DbcTable for CharacterCreateCameras
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::character_facial_hair_styles::CharacterFacialHairStyles
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::character_facial_hair_styles::CharacterFacialHairStyles
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::chat_channels::ChatChannels
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::chat_channels::ChatChannels
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::chat_profanity::ChatProfanity
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::chat_profanity::ChatProfanity
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::chr_classes::ChrClasses
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::chr_classes::ChrClasses
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::chr_races::ChrRaces
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::chr_races::ChrRaces
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::cinematic_camera::CinematicCamera
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::cinematic_camera::CinematicCamera
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::cinematic_sequences::CinematicSequences
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::cinematic_sequences::CinematicSequences
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::creature_family::CreatureFamily
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::creature_family::CreatureFamily
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::creature_model_data::CreatureModelData
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::creature_model_data::CreatureModelData
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::creature_sound_data::CreatureSoundData
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::creature_sound_data::CreatureSoundData
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::creature_spell_data::CreatureSpellData
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::creature_spell_data::CreatureSpellData
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::creature_type::CreatureType
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::creature_type::CreatureType
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::death_thud_lookups::DeathThudLookups
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::death_thud_lookups::DeathThudLookups
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::durability_costs::DurabilityCosts
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::durability_costs::DurabilityCosts
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::durability_quality::DurabilityQuality
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::durability_quality::DurabilityQuality
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::emotes::Emotes
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::emotes::Emotes
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::emotes_text::EmotesText
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::emotes_text::EmotesText
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::emotes_text_data::EmotesTextData
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::emotes_text_data::EmotesTextData
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::emotes_text_sound::EmotesTextSound
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::emotes_text_sound::EmotesTextSound
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::environmental_damage::EnvironmentalDamage
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::environmental_damage::EnvironmentalDamage
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::exhaustion::Exhaustion
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::exhaustion::Exhaustion
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::faction::Faction
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::faction::Faction
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::faction_group::FactionGroup
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::faction_group::FactionGroup
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::faction_template::FactionTemplate
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::faction_template::FactionTemplate
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::footprint_textures::FootprintTextures
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::footprint_textures::FootprintTextures
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::game_tips::GameTips
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::game_tips::GameTips
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::gm_ticket_category::GMTicketCategory
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::gm_ticket_category::GMTicketCategory
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_bag_family::ItemBagFamily
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_bag_family::ItemBagFamily
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_class::ItemClass
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_class::ItemClass
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_display_info::ItemDisplayInfo
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_display_info::ItemDisplayInfo
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_group_sounds::ItemGroupSounds
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_group_sounds::ItemGroupSounds
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_pet_food::ItemPetFood
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_pet_food::ItemPetFood
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_random_properties::ItemRandomProperties
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_random_properties::ItemRandomProperties
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_set::ItemSet
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_set::ItemSet
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_sub_class::ItemSubClass
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_sub_class::ItemSubClass
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_sub_class_mask::ItemSubClassMask
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_sub_class_mask::ItemSubClassMask
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_visual_effects::ItemVisualEffects
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_visual_effects::ItemVisualEffects
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::item_visuals::ItemVisuals
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::item_visuals::ItemVisuals
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::language_words::LanguageWords
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::language_words::LanguageWords
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::languages::Languages
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::languages::Languages
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::lfg_dungeons::LFGDungeons
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::lfg_dungeons::LFGDungeons
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::light::Light
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::light::Light
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::light_float_band::LightFloatBand
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::light_float_band::LightFloatBand
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::light_int_band::LightIntBand
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::light_int_band::LightIntBand
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::light_params::LightParams
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::light_params::LightParams
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::light_skybox::LightSkybox
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::light_skybox::LightSkybox
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::liquid_type::LiquidType
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::liquid_type::LiquidType
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::loading_screens::LoadingScreens
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::loading_screens::LoadingScreens
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::lock::Lock
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::lock::Lock
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::lock_type::LockType
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::lock_type::LockType
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::mail_template::MailTemplate
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::mail_template::MailTemplate
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::material::Material
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::material::Material
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::name_gen::NameGen
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::name_gen::NameGen
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::names_profanity::NamesProfanity
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::names_profanity::NamesProfanity
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::names_reserved::NamesReserved
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::names_reserved::NamesReserved
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::npc_sounds::NPCSounds
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::npc_sounds::NPCSounds
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::package::Package
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::package::Package
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::page_text_material::PageTextMaterial
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::page_text_material::PageTextMaterial
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::paper_doll_item_frame::PaperDollItemFrame
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::paper_doll_item_frame::PaperDollItemFrame
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::pet_loyalty::PetLoyalty
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::pet_loyalty::PetLoyalty
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::pet_personality::PetPersonality
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::pet_personality::PetPersonality
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::quest_info::QuestInfo
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::quest_info::QuestInfo
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::quest_sort::QuestSort
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::quest_sort::QuestSort
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::resistances::Resistances
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::resistances::Resistances
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::server_messages::ServerMessages
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::server_messages::ServerMessages
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::skill_costs_data::SkillCostsData
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::skill_costs_data::SkillCostsData
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::skill_line::SkillLine
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::skill_line::SkillLine
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::skill_line_ability::SkillLineAbility
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::skill_line_ability::SkillLineAbility
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::skill_line_category::SkillLineCategory
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::skill_line_category::SkillLineCategory
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::skill_tiers::SkillTiers
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::skill_tiers::SkillTiers
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::sound_ambience::SoundAmbience
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::sound_ambience::SoundAmbience
Available on crate feature
vanilla
only.Source§impl DbcTable for SoundCharacterMacroLines
Available on crate feature vanilla
only.
impl DbcTable for SoundCharacterMacroLines
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::sound_entries::SoundEntries
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::sound_entries::SoundEntries
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::sound_water_type::SoundWaterType
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::sound_water_type::SoundWaterType
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spam_messages::SpamMessages
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spam_messages::SpamMessages
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell::Spell
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell::Spell
Available on crate feature
vanilla
only.Source§impl DbcTable for SpellAuraNames
Available on crate feature vanilla
only.
impl DbcTable for SpellAuraNames
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_cast_times::SpellCastTimes
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_cast_times::SpellCastTimes
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_category::SpellCategory
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_category::SpellCategory
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_chain_effects::SpellChainEffects
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_chain_effects::SpellChainEffects
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_dispel_type::SpellDispelType
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_dispel_type::SpellDispelType
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_duration::SpellDuration
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_duration::SpellDuration
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature
vanilla
only.Source§impl DbcTable for SpellEffectNames
Available on crate feature vanilla
only.
impl DbcTable for SpellEffectNames
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_focus_object::SpellFocusObject
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_focus_object::SpellFocusObject
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_icon::SpellIcon
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_icon::SpellIcon
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_mechanic::SpellMechanic
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_mechanic::SpellMechanic
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_radius::SpellRadius
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_radius::SpellRadius
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_range::SpellRange
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_range::SpellRange
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_visual::SpellVisual
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_visual::SpellVisual
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_visual_kit::SpellVisualKit
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_visual_kit::SpellVisualKit
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::stable_slot_prices::StableSlotPrices
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::stable_slot_prices::StableSlotPrices
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::startup_strings::Startup_Strings
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::startup_strings::Startup_Strings
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::stationery::Stationery
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::stationery::Stationery
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::string_lookups::StringLookups
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::string_lookups::StringLookups
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::talent::Talent
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::talent::Talent
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::talent_tab::TalentTab
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::talent_tab::TalentTab
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::taxi_nodes::TaxiNodes
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::taxi_nodes::TaxiNodes
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::taxi_path::TaxiPath
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::taxi_path::TaxiPath
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::taxi_path_node::TaxiPathNode
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::taxi_path_node::TaxiPathNode
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::terrain_type::TerrainType
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::terrain_type::TerrainType
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::transport_animation::TransportAnimation
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::transport_animation::TransportAnimation
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::ui_sound_lookups::UISoundLookups
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::ui_sound_lookups::UISoundLookups
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::unit_blood::UnitBlood
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::unit_blood::UnitBlood
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::video_hardware::VideoHardware
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::video_hardware::VideoHardware
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::wmo_area_table::WMOAreaTable
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::wmo_area_table::WMOAreaTable
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::world_map_area::WorldMapArea
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::world_map_area::WorldMapArea
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::world_map_continent::WorldMapContinent
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::world_map_continent::WorldMapContinent
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::world_map_overlay::WorldMapOverlay
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::world_map_overlay::WorldMapOverlay
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::world_safe_locs::WorldSafeLocs
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::world_safe_locs::WorldSafeLocs
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::world_state_ui::WorldStateUI
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::world_state_ui::WorldStateUI
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::wow_error_strings::WowError_Strings
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::wow_error_strings::WowError_Strings
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature
vanilla
only.Source§impl DbcTable for wow_dbc::vanilla_tables::zone_music::ZoneMusic
Available on crate feature vanilla
only.
impl DbcTable for wow_dbc::vanilla_tables::zone_music::ZoneMusic
Available on crate feature
vanilla
only.Source§impl DbcTable for Achievement
Available on crate feature wrath
only.
impl DbcTable for Achievement
Available on crate feature
wrath
only.Source§impl DbcTable for Achievement_Category
Available on crate feature wrath
only.
impl DbcTable for Achievement_Category
Available on crate feature
wrath
only.Source§impl DbcTable for Achievement_Criteria
Available on crate feature wrath
only.
impl DbcTable for Achievement_Criteria
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::animation_data::AnimationData
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::animation_data::AnimationData
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::area_poi::AreaPOI
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::area_poi::AreaPOI
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::area_table::AreaTable
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::area_table::AreaTable
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::area_trigger::AreaTrigger
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::area_trigger::AreaTrigger
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::attack_anim_kits::AttackAnimKits
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::attack_anim_kits::AttackAnimKits
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::attack_anim_types::AttackAnimTypes
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::attack_anim_types::AttackAnimTypes
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::auction_house::AuctionHouse
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::auction_house::AuctionHouse
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::bank_bag_slot_prices::BankBagSlotPrices
Available on crate feature
wrath
only.Source§impl DbcTable for BannedAddOns
Available on crate feature wrath
only.
impl DbcTable for BannedAddOns
Available on crate feature
wrath
only.Source§impl DbcTable for BarberShopStyle
Available on crate feature wrath
only.
impl DbcTable for BarberShopStyle
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::battlemaster_list::BattlemasterList
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::battlemaster_list::BattlemasterList
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::camera_shakes::CameraShakes
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::camera_shakes::CameraShakes
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::cfg_categories::Cfg_Categories
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::cfg_categories::Cfg_Categories
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::cfg_configs::Cfg_Configs
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::cfg_configs::Cfg_Configs
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::char_base_info::CharBaseInfo
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::char_base_info::CharBaseInfo
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::char_hair_geosets::CharHairGeosets
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::char_hair_geosets::CharHairGeosets
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::char_hair_textures::CharHairTextures
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::char_hair_textures::CharHairTextures
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::char_sections::CharSections
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::char_sections::CharSections
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::char_start_outfit::CharStartOutfit
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::char_start_outfit::CharStartOutfit
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::char_titles::CharTitles
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::char_titles::CharTitles
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::char_variations::CharVariations
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::char_variations::CharVariations
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::character_facial_hair_styles::CharacterFacialHairStyles
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::character_facial_hair_styles::CharacterFacialHairStyles
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::chat_channels::ChatChannels
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::chat_channels::ChatChannels
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::chat_profanity::ChatProfanity
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::chat_profanity::ChatProfanity
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::chr_classes::ChrClasses
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::chr_classes::ChrClasses
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::chr_races::ChrRaces
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::chr_races::ChrRaces
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::cinematic_camera::CinematicCamera
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::cinematic_camera::CinematicCamera
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::cinematic_sequences::CinematicSequences
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::cinematic_sequences::CinematicSequences
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::creature_display_info::CreatureDisplayInfo
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::creature_display_info_extra::CreatureDisplayInfoExtra
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::creature_family::CreatureFamily
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::creature_family::CreatureFamily
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::creature_model_data::CreatureModelData
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::creature_model_data::CreatureModelData
Available on crate feature
wrath
only.Source§impl DbcTable for CreatureMovementInfo
Available on crate feature wrath
only.
impl DbcTable for CreatureMovementInfo
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::creature_sound_data::CreatureSoundData
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::creature_sound_data::CreatureSoundData
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::creature_spell_data::CreatureSpellData
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::creature_spell_data::CreatureSpellData
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::creature_type::CreatureType
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::creature_type::CreatureType
Available on crate feature
wrath
only.Source§impl DbcTable for CurrencyCategory
Available on crate feature wrath
only.
impl DbcTable for CurrencyCategory
Available on crate feature
wrath
only.Source§impl DbcTable for CurrencyTypes
Available on crate feature wrath
only.
impl DbcTable for CurrencyTypes
Available on crate feature
wrath
only.Source§impl DbcTable for DanceMoves
Available on crate feature wrath
only.
impl DbcTable for DanceMoves
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::death_thud_lookups::DeathThudLookups
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::death_thud_lookups::DeathThudLookups
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::declined_word::DeclinedWord
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::declined_word::DeclinedWord
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::declined_word_cases::DeclinedWordCases
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::declined_word_cases::DeclinedWordCases
Available on crate feature
wrath
only.Source§impl DbcTable for DestructibleModelData
Available on crate feature wrath
only.
impl DbcTable for DestructibleModelData
Available on crate feature
wrath
only.Source§impl DbcTable for DungeonEncounter
Available on crate feature wrath
only.
impl DbcTable for DungeonEncounter
Available on crate feature
wrath
only.Source§impl DbcTable for DungeonMap
Available on crate feature wrath
only.
impl DbcTable for DungeonMap
Available on crate feature
wrath
only.Source§impl DbcTable for DungeonMapChunk
Available on crate feature wrath
only.
impl DbcTable for DungeonMapChunk
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::durability_costs::DurabilityCosts
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::durability_costs::DurabilityCosts
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::durability_quality::DurabilityQuality
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::durability_quality::DurabilityQuality
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::emotes::Emotes
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::emotes::Emotes
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::emotes_text::EmotesText
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::emotes_text::EmotesText
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::emotes_text_data::EmotesTextData
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::emotes_text_data::EmotesTextData
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::emotes_text_sound::EmotesTextSound
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::emotes_text_sound::EmotesTextSound
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::environmental_damage::EnvironmentalDamage
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::environmental_damage::EnvironmentalDamage
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::exhaustion::Exhaustion
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::exhaustion::Exhaustion
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::faction::Faction
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::faction::Faction
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::faction_group::FactionGroup
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::faction_group::FactionGroup
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::faction_template::FactionTemplate
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::faction_template::FactionTemplate
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::footprint_textures::FootprintTextures
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::footprint_textures::FootprintTextures
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::footstep_terrain_lookup::FootstepTerrainLookup
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::game_object_art_kit::GameObjectArtKit
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::game_object_display_info::GameObjectDisplayInfo
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::game_tables::GameTables
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::game_tables::GameTables
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::game_tips::GameTips
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::game_tips::GameTips
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gem_properties::GemProperties
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gem_properties::GemProperties
Available on crate feature
wrath
only.Source§impl DbcTable for GlyphProperties
Available on crate feature wrath
only.
impl DbcTable for GlyphProperties
Available on crate feature
wrath
only.Source§impl DbcTable for GMSurveyAnswers
Available on crate feature wrath
only.
impl DbcTable for GMSurveyAnswers
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gm_survey_current_survey::GMSurveyCurrentSurvey
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gm_survey_questions::GMSurveyQuestions
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gm_survey_surveys::GMSurveySurveys
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gm_ticket_category::GMTicketCategory
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gm_ticket_category::GMTicketCategory
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::ground_effect_doodad::GroundEffectDoodad
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::ground_effect_texture::GroundEffectTexture
Available on crate feature
wrath
only.Source§impl DbcTable for gtBarberShopCostBase
Available on crate feature wrath
only.
impl DbcTable for gtBarberShopCostBase
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_melee_crit::gtChanceToMeleeCrit
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_melee_crit::gtChanceToMeleeCrit
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_melee_crit_base::gtChanceToMeleeCritBase
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_melee_crit_base::gtChanceToMeleeCritBase
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_spell_crit::gtChanceToSpellCrit
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_spell_crit::gtChanceToSpellCrit
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_spell_crit_base::gtChanceToSpellCritBase
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_spell_crit_base::gtChanceToSpellCritBase
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_combat_ratings::gtCombatRatings
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_combat_ratings::gtCombatRatings
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_npc_mana_cost_scaler::gtNPCManaCostScaler
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_npc_mana_cost_scaler::gtNPCManaCostScaler
Available on crate feature
wrath
only.Source§impl DbcTable for gtOCTClassCombatRatingScalar
Available on crate feature wrath
only.
impl DbcTable for gtOCTClassCombatRatingScalar
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_oct_regen_hp::gtOCTRegenHP
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_oct_regen_hp::gtOCTRegenHP
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_oct_regen_mp::gtOCTRegenMP
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_oct_regen_mp::gtOCTRegenMP
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_regen_hp_per_spt::gtRegenHPPerSpt
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_regen_hp_per_spt::gtRegenHPPerSpt
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::gt_regen_mp_per_spt::gtRegenMPPerSpt
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::gt_regen_mp_per_spt::gtRegenMPPerSpt
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::helmet_geoset_vis_data::HelmetGeosetVisData
Available on crate feature
wrath
only.Source§impl DbcTable for HolidayDescriptions
Available on crate feature wrath
only.
impl DbcTable for HolidayDescriptions
Available on crate feature
wrath
only.Source§impl DbcTable for HolidayNames
Available on crate feature wrath
only.
impl DbcTable for HolidayNames
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_bag_family::ItemBagFamily
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_bag_family::ItemBagFamily
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_class::ItemClass
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_class::ItemClass
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_cond_ext_costs::ItemCondExtCosts
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_cond_ext_costs::ItemCondExtCosts
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_display_info::ItemDisplayInfo
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_display_info::ItemDisplayInfo
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_extended_cost::ItemExtendedCost
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_extended_cost::ItemExtendedCost
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_group_sounds::ItemGroupSounds
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_group_sounds::ItemGroupSounds
Available on crate feature
wrath
only.Source§impl DbcTable for ItemLimitCategory
Available on crate feature wrath
only.
impl DbcTable for ItemLimitCategory
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_pet_food::ItemPetFood
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_pet_food::ItemPetFood
Available on crate feature
wrath
only.Source§impl DbcTable for ItemPurchaseGroup
Available on crate feature wrath
only.
impl DbcTable for ItemPurchaseGroup
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_random_properties::ItemRandomProperties
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_random_properties::ItemRandomProperties
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_random_suffix::ItemRandomSuffix
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_random_suffix::ItemRandomSuffix
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_set::ItemSet
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_set::ItemSet
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_sub_class::ItemSubClass
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_sub_class::ItemSubClass
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_sub_class_mask::ItemSubClassMask
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_sub_class_mask::ItemSubClassMask
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_visual_effects::ItemVisualEffects
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_visual_effects::ItemVisualEffects
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::item_visuals::ItemVisuals
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::item_visuals::ItemVisuals
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::language_words::LanguageWords
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::language_words::LanguageWords
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::languages::Languages
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::languages::Languages
Available on crate feature
wrath
only.Source§impl DbcTable for LFGDungeonExpansion
Available on crate feature wrath
only.
impl DbcTable for LFGDungeonExpansion
Available on crate feature
wrath
only.Source§impl DbcTable for LFGDungeonGroup
Available on crate feature wrath
only.
impl DbcTable for LFGDungeonGroup
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::lfg_dungeons::LFGDungeons
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::lfg_dungeons::LFGDungeons
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::light_float_band::LightFloatBand
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::light_float_band::LightFloatBand
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::light_int_band::LightIntBand
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::light_int_band::LightIntBand
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::light_params::LightParams
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::light_params::LightParams
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::light_skybox::LightSkybox
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::light_skybox::LightSkybox
Available on crate feature
wrath
only.Source§impl DbcTable for LiquidMaterial
Available on crate feature wrath
only.
impl DbcTable for LiquidMaterial
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::liquid_type::LiquidType
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::liquid_type::LiquidType
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::loading_screens::LoadingScreens
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::loading_screens::LoadingScreens
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::lock_type::LockType
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::lock_type::LockType
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::mail_template::MailTemplate
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::mail_template::MailTemplate
Available on crate feature
wrath
only.Source§impl DbcTable for MapDifficulty
Available on crate feature wrath
only.
impl DbcTable for MapDifficulty
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::material::Material
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::material::Material
Available on crate feature
wrath
only.Source§impl DbcTable for MovieFileData
Available on crate feature wrath
only.
impl DbcTable for MovieFileData
Available on crate feature
wrath
only.Source§impl DbcTable for MovieVariation
Available on crate feature wrath
only.
impl DbcTable for MovieVariation
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::name_gen::NameGen
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::name_gen::NameGen
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::names_profanity::NamesProfanity
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::names_profanity::NamesProfanity
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::names_reserved::NamesReserved
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::names_reserved::NamesReserved
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::npc_sounds::NPCSounds
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::npc_sounds::NPCSounds
Available on crate feature
wrath
only.Source§impl DbcTable for ObjectEffect
Available on crate feature wrath
only.
impl DbcTable for ObjectEffect
Available on crate feature
wrath
only.Source§impl DbcTable for ObjectEffectGroup
Available on crate feature wrath
only.
impl DbcTable for ObjectEffectGroup
Available on crate feature
wrath
only.Source§impl DbcTable for ObjectEffectModifier
Available on crate feature wrath
only.
impl DbcTable for ObjectEffectModifier
Available on crate feature
wrath
only.Source§impl DbcTable for ObjectEffectPackage
Available on crate feature wrath
only.
impl DbcTable for ObjectEffectPackage
Available on crate feature
wrath
only.Source§impl DbcTable for ObjectEffectPackageElem
Available on crate feature wrath
only.
impl DbcTable for ObjectEffectPackageElem
Available on crate feature
wrath
only.Source§impl DbcTable for OverrideSpellData
Available on crate feature wrath
only.
impl DbcTable for OverrideSpellData
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::package::Package
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::package::Package
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::page_text_material::PageTextMaterial
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::page_text_material::PageTextMaterial
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::paper_doll_item_frame::PaperDollItemFrame
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::paper_doll_item_frame::PaperDollItemFrame
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::particle_color::ParticleColor
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::particle_color::ParticleColor
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::pet_personality::PetPersonality
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::pet_personality::PetPersonality
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::petition_type::PetitionType
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::petition_type::PetitionType
Available on crate feature
wrath
only.Source§impl DbcTable for PowerDisplay
Available on crate feature wrath
only.
impl DbcTable for PowerDisplay
Available on crate feature
wrath
only.Source§impl DbcTable for PvpDifficulty
Available on crate feature wrath
only.
impl DbcTable for PvpDifficulty
Available on crate feature
wrath
only.Source§impl DbcTable for QuestFactionReward
Available on crate feature wrath
only.
impl DbcTable for QuestFactionReward
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::quest_info::QuestInfo
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::quest_info::QuestInfo
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::quest_sort::QuestSort
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::quest_sort::QuestSort
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::rand_prop_points::RandPropPoints
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::rand_prop_points::RandPropPoints
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::resistances::Resistances
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::resistances::Resistances
Available on crate feature
wrath
only.Source§impl DbcTable for ScalingStatDistribution
Available on crate feature wrath
only.
impl DbcTable for ScalingStatDistribution
Available on crate feature
wrath
only.Source§impl DbcTable for ScalingStatValues
Available on crate feature wrath
only.
impl DbcTable for ScalingStatValues
Available on crate feature
wrath
only.Source§impl DbcTable for ScreenEffect
Available on crate feature wrath
only.
impl DbcTable for ScreenEffect
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::server_messages::ServerMessages
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::server_messages::ServerMessages
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::sheathe_sound_lookups::SheatheSoundLookups
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::skill_costs_data::SkillCostsData
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::skill_costs_data::SkillCostsData
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::skill_line::SkillLine
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::skill_line::SkillLine
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::skill_line_ability::SkillLineAbility
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::skill_line_ability::SkillLineAbility
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::skill_line_category::SkillLineCategory
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::skill_line_category::SkillLineCategory
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::skill_race_class_info::SkillRaceClassInfo
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::skill_tiers::SkillTiers
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::skill_tiers::SkillTiers
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::sound_ambience::SoundAmbience
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::sound_ambience::SoundAmbience
Available on crate feature
wrath
only.Source§impl DbcTable for SoundEmitters
Available on crate feature wrath
only.
impl DbcTable for SoundEmitters
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::sound_entries::SoundEntries
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::sound_entries::SoundEntries
Available on crate feature
wrath
only.Source§impl DbcTable for SoundEntriesAdvanced
Available on crate feature wrath
only.
impl DbcTable for SoundEntriesAdvanced
Available on crate feature
wrath
only.Source§impl DbcTable for SoundFilter
Available on crate feature wrath
only.
impl DbcTable for SoundFilter
Available on crate feature
wrath
only.Source§impl DbcTable for SoundFilterElem
Available on crate feature wrath
only.
impl DbcTable for SoundFilterElem
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::sound_provider_preferences::SoundProviderPreferences
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::sound_sample_preferences::SoundSamplePreferences
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::sound_water_type::SoundWaterType
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::sound_water_type::SoundWaterType
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spam_messages::SpamMessages
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spam_messages::SpamMessages
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_cast_times::SpellCastTimes
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_cast_times::SpellCastTimes
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_category::SpellCategory
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_category::SpellCategory
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_chain_effects::SpellChainEffects
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_chain_effects::SpellChainEffects
Available on crate feature
wrath
only.Source§impl DbcTable for SpellDescriptionVariables
Available on crate feature wrath
only.
impl DbcTable for SpellDescriptionVariables
Available on crate feature
wrath
only.Source§impl DbcTable for SpellDifficulty
Available on crate feature wrath
only.
impl DbcTable for SpellDifficulty
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_dispel_type::SpellDispelType
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_dispel_type::SpellDispelType
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_duration::SpellDuration
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_duration::SpellDuration
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_effect_camera_shakes::SpellEffectCameraShakes
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_focus_object::SpellFocusObject
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_focus_object::SpellFocusObject
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_icon::SpellIcon
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_icon::SpellIcon
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_item_enchantment::SpellItemEnchantment
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_mechanic::SpellMechanic
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_mechanic::SpellMechanic
Available on crate feature
wrath
only.Source§impl DbcTable for SpellMissile
Available on crate feature wrath
only.
impl DbcTable for SpellMissile
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_missile_motion::SpellMissileMotion
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_missile_motion::SpellMissileMotion
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_radius::SpellRadius
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_radius::SpellRadius
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_range::SpellRange
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_range::SpellRange
Available on crate feature
wrath
only.Source§impl DbcTable for SpellRuneCost
Available on crate feature wrath
only.
impl DbcTable for SpellRuneCost
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_shapeshift_form::SpellShapeshiftForm
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_visual::SpellVisual
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_visual::SpellVisual
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_visual_effect_name::SpellVisualEffectName
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_visual_kit::SpellVisualKit
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_visual_kit::SpellVisualKit
Available on crate feature
wrath
only.Source§impl DbcTable for SpellVisualKitAreaModel
Available on crate feature wrath
only.
impl DbcTable for SpellVisualKitAreaModel
Available on crate feature
wrath
only.Source§impl DbcTable for SpellVisualKitModelAttach
Available on crate feature wrath
only.
impl DbcTable for SpellVisualKitModelAttach
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::stable_slot_prices::StableSlotPrices
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::stable_slot_prices::StableSlotPrices
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::startup_strings::Startup_Strings
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::startup_strings::Startup_Strings
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::stationery::Stationery
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::stationery::Stationery
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::string_lookups::StringLookups
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::string_lookups::StringLookups
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::summon_properties::SummonProperties
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::summon_properties::SummonProperties
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::talent::Talent
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::talent::Talent
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::talent_tab::TalentTab
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::talent_tab::TalentTab
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::taxi_nodes::TaxiNodes
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::taxi_nodes::TaxiNodes
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::taxi_path::TaxiPath
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::taxi_path::TaxiPath
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::taxi_path_node::TaxiPathNode
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::taxi_path_node::TaxiPathNode
Available on crate feature
wrath
only.Source§impl DbcTable for TeamContributionPoints
Available on crate feature wrath
only.
impl DbcTable for TeamContributionPoints
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::terrain_type::TerrainType
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::terrain_type::TerrainType
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::terrain_type_sounds::TerrainTypeSounds
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::totem_category::TotemCategory
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::totem_category::TotemCategory
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::transport_animation::TransportAnimation
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::transport_animation::TransportAnimation
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::transport_physics::TransportPhysics
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::transport_physics::TransportPhysics
Available on crate feature
wrath
only.Source§impl DbcTable for TransportRotation
Available on crate feature wrath
only.
impl DbcTable for TransportRotation
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::ui_sound_lookups::UISoundLookups
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::ui_sound_lookups::UISoundLookups
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::unit_blood::UnitBlood
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::unit_blood::UnitBlood
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::unit_blood_levels::UnitBloodLevels
Available on crate feature
wrath
only.Source§impl DbcTable for VehicleSeat
Available on crate feature wrath
only.
impl DbcTable for VehicleSeat
Available on crate feature
wrath
only.Source§impl DbcTable for VehicleUIIndSeat
Available on crate feature wrath
only.
impl DbcTable for VehicleUIIndSeat
Available on crate feature
wrath
only.Source§impl DbcTable for VehicleUIIndicator
Available on crate feature wrath
only.
impl DbcTable for VehicleUIIndicator
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::video_hardware::VideoHardware
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::video_hardware::VideoHardware
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::vocal_ui_sounds::VocalUISounds
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::weapon_impact_sounds::WeaponImpactSounds
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::weapon_swing_sounds2::WeaponSwingSounds2
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::weather::Weather
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::weather::Weather
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::wmo_area_table::WMOAreaTable
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::wmo_area_table::WMOAreaTable
Available on crate feature
wrath
only.Source§impl DbcTable for WorldChunkSounds
Available on crate feature wrath
only.
impl DbcTable for WorldChunkSounds
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::world_map_area::WorldMapArea
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::world_map_area::WorldMapArea
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::world_map_continent::WorldMapContinent
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::world_map_continent::WorldMapContinent
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::world_map_overlay::WorldMapOverlay
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::world_map_overlay::WorldMapOverlay
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::world_map_transforms::WorldMapTransforms
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::world_map_transforms::WorldMapTransforms
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::world_safe_locs::WorldSafeLocs
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::world_safe_locs::WorldSafeLocs
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::world_state_ui::WorldStateUI
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::world_state_ui::WorldStateUI
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::world_state_zone_sounds::WorldStateZoneSounds
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::world_state_zone_sounds::WorldStateZoneSounds
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::wow_error_strings::WowError_Strings
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::wow_error_strings::WowError_Strings
Available on crate feature
wrath
only.Source§impl DbcTable for wow_dbc::wrath_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature wrath
only.
impl DbcTable for wow_dbc::wrath_tables::zone_intro_music_table::ZoneIntroMusicTable
Available on crate feature
wrath
only.