Trait DbcTable

Source
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§

Source

const FILENAME: &'static str

The name of the DBC file with .dbc at the end.

Required Associated Types§

Source

type Row

Will be the name of the implementing type suffixed with Row.

Required Methods§

Source

fn rows(&self) -> &[Self::Row]

Array of all rows. Are not guaranteed to be in any order.

Source

fn rows_mut(&mut self) -> &mut [Self::Row]

Mutable array of all rows. Are not guaranteed to be in any order.

Source

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.

Source

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.
Source§

const FILENAME: &'static str = "AnimationData.dbc"

Source§

type Row = AnimationDataRow

Source§

impl DbcTable for wow_dbc::tbc_tables::area_poi::AreaPOI

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "AreaPOI.dbc"

Source§

type Row = AreaPOIRow

Source§

impl DbcTable for wow_dbc::tbc_tables::area_table::AreaTable

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "AreaTable.dbc"

Source§

type Row = AreaTableRow

Source§

impl DbcTable for wow_dbc::tbc_tables::area_trigger::AreaTrigger

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "AreaTrigger.dbc"

Source§

type Row = AreaTriggerRow

Source§

impl DbcTable for wow_dbc::tbc_tables::attack_anim_kits::AttackAnimKits

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "AttackAnimKits.dbc"

Source§

type Row = AttackAnimKitsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::attack_anim_types::AttackAnimTypes

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "AttackAnimTypes.dbc"

Source§

type Row = AttackAnimTypesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::auction_house::AuctionHouse

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "AuctionHouse.dbc"

Source§

type Row = AuctionHouseRow

Source§

impl DbcTable for wow_dbc::tbc_tables::bank_bag_slot_prices::BankBagSlotPrices

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "BankBagSlotPrices.dbc"

Source§

type Row = BankBagSlotPricesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::battlemaster_list::BattlemasterList

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "BattlemasterList.dbc"

Source§

type Row = BattlemasterListRow

Source§

impl DbcTable for wow_dbc::tbc_tables::camera_shakes::CameraShakes

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CameraShakes.dbc"

Source§

type Row = CameraShakesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::cfg_categories::Cfg_Categories

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Cfg_Categories.dbc"

Source§

type Row = Cfg_CategoriesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::cfg_configs::Cfg_Configs

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Cfg_Configs.dbc"

Source§

type Row = Cfg_ConfigsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::char_base_info::CharBaseInfo

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharBaseInfo.dbc"

Source§

type Row = CharBaseInfoRow

Source§

impl DbcTable for wow_dbc::tbc_tables::char_hair_geosets::CharHairGeosets

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharHairGeosets.dbc"

Source§

type Row = CharHairGeosetsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::char_hair_textures::CharHairTextures

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharHairTextures.dbc"

Source§

type Row = CharHairTexturesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::char_sections::CharSections

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharSections.dbc"

Source§

type Row = CharSectionsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::char_start_outfit::CharStartOutfit

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharStartOutfit.dbc"

Source§

type Row = CharStartOutfitRow

Source§

impl DbcTable for wow_dbc::tbc_tables::char_titles::CharTitles

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharTitles.dbc"

Source§

type Row = CharTitlesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::char_variations::CharVariations

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharVariations.dbc"

Source§

type Row = CharVariationsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::character_facial_hair_styles::CharacterFacialHairStyles

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CharacterFacialHairStyles.dbc"

Source§

type Row = CharacterFacialHairStylesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::chat_channels::ChatChannels

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ChatChannels.dbc"

Source§

type Row = ChatChannelsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::chat_profanity::ChatProfanity

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ChatProfanity.dbc"

Source§

type Row = ChatProfanityRow

Source§

impl DbcTable for wow_dbc::tbc_tables::chr_classes::ChrClasses

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ChrClasses.dbc"

Source§

type Row = ChrClassesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::chr_races::ChrRaces

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ChrRaces.dbc"

Source§

type Row = ChrRacesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::cinematic_camera::CinematicCamera

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CinematicCamera.dbc"

Source§

type Row = CinematicCameraRow

Source§

impl DbcTable for wow_dbc::tbc_tables::cinematic_sequences::CinematicSequences

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CinematicSequences.dbc"

Source§

type Row = CinematicSequencesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::creature_display_info::CreatureDisplayInfo

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CreatureDisplayInfo.dbc"

Source§

type Row = CreatureDisplayInfoRow

Source§

impl DbcTable for wow_dbc::tbc_tables::creature_display_info_extra::CreatureDisplayInfoExtra

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CreatureDisplayInfoExtra.dbc"

Source§

type Row = CreatureDisplayInfoExtraRow

Source§

impl DbcTable for wow_dbc::tbc_tables::creature_family::CreatureFamily

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CreatureFamily.dbc"

Source§

type Row = CreatureFamilyRow

Source§

impl DbcTable for wow_dbc::tbc_tables::creature_model_data::CreatureModelData

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CreatureModelData.dbc"

Source§

type Row = CreatureModelDataRow

Source§

impl DbcTable for wow_dbc::tbc_tables::creature_sound_data::CreatureSoundData

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CreatureSoundData.dbc"

Source§

type Row = CreatureSoundDataRow

Source§

impl DbcTable for wow_dbc::tbc_tables::creature_spell_data::CreatureSpellData

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CreatureSpellData.dbc"

Source§

type Row = CreatureSpellDataRow

Source§

impl DbcTable for wow_dbc::tbc_tables::creature_type::CreatureType

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "CreatureType.dbc"

Source§

type Row = CreatureTypeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::death_thud_lookups::DeathThudLookups

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "DeathThudLookups.dbc"

Source§

type Row = DeathThudLookupsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::declined_word::DeclinedWord

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "DeclinedWord.dbc"

Source§

type Row = DeclinedWordRow

Source§

impl DbcTable for wow_dbc::tbc_tables::declined_word_cases::DeclinedWordCases

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "DeclinedWordCases.dbc"

Source§

type Row = DeclinedWordCasesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::durability_costs::DurabilityCosts

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "DurabilityCosts.dbc"

Source§

type Row = DurabilityCostsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::durability_quality::DurabilityQuality

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "DurabilityQuality.dbc"

Source§

type Row = DurabilityQualityRow

Source§

impl DbcTable for wow_dbc::tbc_tables::emotes::Emotes

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Emotes.dbc"

Source§

type Row = EmotesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::emotes_text::EmotesText

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "EmotesText.dbc"

Source§

type Row = EmotesTextRow

Source§

impl DbcTable for wow_dbc::tbc_tables::emotes_text_data::EmotesTextData

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "EmotesTextData.dbc"

Source§

type Row = EmotesTextDataRow

Source§

impl DbcTable for wow_dbc::tbc_tables::emotes_text_sound::EmotesTextSound

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "EmotesTextSound.dbc"

Source§

type Row = EmotesTextSoundRow

Source§

impl DbcTable for wow_dbc::tbc_tables::environmental_damage::EnvironmentalDamage

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "EnvironmentalDamage.dbc"

Source§

type Row = EnvironmentalDamageRow

Source§

impl DbcTable for wow_dbc::tbc_tables::exhaustion::Exhaustion

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Exhaustion.dbc"

Source§

type Row = ExhaustionRow

Source§

impl DbcTable for wow_dbc::tbc_tables::faction::Faction

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Faction.dbc"

Source§

type Row = FactionRow

Source§

impl DbcTable for wow_dbc::tbc_tables::faction_group::FactionGroup

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "FactionGroup.dbc"

Source§

type Row = FactionGroupRow

Source§

impl DbcTable for wow_dbc::tbc_tables::faction_template::FactionTemplate

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "FactionTemplate.dbc"

Source§

type Row = FactionTemplateRow

Source§

impl DbcTable for wow_dbc::tbc_tables::footprint_textures::FootprintTextures

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "FootprintTextures.dbc"

Source§

type Row = FootprintTexturesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::footstep_terrain_lookup::FootstepTerrainLookup

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "FootstepTerrainLookup.dbc"

Source§

type Row = FootstepTerrainLookupRow

Source§

impl DbcTable for wow_dbc::tbc_tables::game_object_art_kit::GameObjectArtKit

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GameObjectArtKit.dbc"

Source§

type Row = GameObjectArtKitRow

Source§

impl DbcTable for wow_dbc::tbc_tables::game_object_display_info::GameObjectDisplayInfo

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GameObjectDisplayInfo.dbc"

Source§

type Row = GameObjectDisplayInfoRow

Source§

impl DbcTable for wow_dbc::tbc_tables::game_tables::GameTables

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GameTables.dbc"

Source§

type Row = GameTablesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::game_tips::GameTips

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GameTips.dbc"

Source§

type Row = GameTipsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gem_properties::GemProperties

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GemProperties.dbc"

Source§

type Row = GemPropertiesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gm_survey_current_survey::GMSurveyCurrentSurvey

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GMSurveyCurrentSurvey.dbc"

Source§

type Row = GMSurveyCurrentSurveyRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gm_survey_questions::GMSurveyQuestions

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GMSurveyQuestions.dbc"

Source§

type Row = GMSurveyQuestionsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gm_survey_surveys::GMSurveySurveys

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GMSurveySurveys.dbc"

Source§

type Row = GMSurveySurveysRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gm_ticket_category::GMTicketCategory

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GMTicketCategory.dbc"

Source§

type Row = GMTicketCategoryRow

Source§

impl DbcTable for wow_dbc::tbc_tables::ground_effect_doodad::GroundEffectDoodad

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GroundEffectDoodad.dbc"

Source§

type Row = GroundEffectDoodadRow

Source§

impl DbcTable for wow_dbc::tbc_tables::ground_effect_texture::GroundEffectTexture

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "GroundEffectTexture.dbc"

Source§

type Row = GroundEffectTextureRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_melee_crit::gtChanceToMeleeCrit

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtChanceToMeleeCrit.dbc"

Source§

type Row = gtChanceToMeleeCritRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_melee_crit_base::gtChanceToMeleeCritBase

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtChanceToMeleeCritBase.dbc"

Source§

type Row = gtChanceToMeleeCritBaseRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_spell_crit::gtChanceToSpellCrit

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtChanceToSpellCrit.dbc"

Source§

type Row = gtChanceToSpellCritRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_chance_to_spell_crit_base::gtChanceToSpellCritBase

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtChanceToSpellCritBase.dbc"

Source§

type Row = gtChanceToSpellCritBaseRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_combat_ratings::gtCombatRatings

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtCombatRatings.dbc"

Source§

type Row = gtCombatRatingsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_npc_mana_cost_scaler::gtNPCManaCostScaler

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtNPCManaCostScaler.dbc"

Source§

type Row = gtNPCManaCostScalerRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_oct_regen_hp::gtOCTRegenHP

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtOCTRegenHP.dbc"

Source§

type Row = gtOCTRegenHPRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_oct_regen_mp::gtOCTRegenMP

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtOCTRegenMP.dbc"

Source§

type Row = gtOCTRegenMPRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_regen_hp_per_spt::gtRegenHPPerSpt

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtRegenHPPerSpt.dbc"

Source§

type Row = gtRegenHPPerSptRow

Source§

impl DbcTable for wow_dbc::tbc_tables::gt_regen_mp_per_spt::gtRegenMPPerSpt

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "gtRegenMPPerSpt.dbc"

Source§

type Row = gtRegenMPPerSptRow

Source§

impl DbcTable for wow_dbc::tbc_tables::helmet_geoset_vis_data::HelmetGeosetVisData

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "HelmetGeosetVisData.dbc"

Source§

type Row = HelmetGeosetVisDataRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item::Item

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Item.dbc"

Source§

type Row = ItemRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_bag_family::ItemBagFamily

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemBagFamily.dbc"

Source§

type Row = ItemBagFamilyRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_class::ItemClass

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemClass.dbc"

Source§

type Row = ItemClassRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_cond_ext_costs::ItemCondExtCosts

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemCondExtCosts.dbc"

Source§

type Row = ItemCondExtCostsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_display_info::ItemDisplayInfo

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemDisplayInfo.dbc"

Source§

type Row = ItemDisplayInfoRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_extended_cost::ItemExtendedCost

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemExtendedCost.dbc"

Source§

type Row = ItemExtendedCostRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_group_sounds::ItemGroupSounds

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemGroupSounds.dbc"

Source§

type Row = ItemGroupSoundsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_pet_food::ItemPetFood

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemPetFood.dbc"

Source§

type Row = ItemPetFoodRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_random_properties::ItemRandomProperties

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemRandomProperties.dbc"

Source§

type Row = ItemRandomPropertiesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_random_suffix::ItemRandomSuffix

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemRandomSuffix.dbc"

Source§

type Row = ItemRandomSuffixRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_set::ItemSet

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemSet.dbc"

Source§

type Row = ItemSetRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_sub_class::ItemSubClass

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemSubClass.dbc"

Source§

type Row = ItemSubClassRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_sub_class_mask::ItemSubClassMask

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemSubClassMask.dbc"

Source§

type Row = ItemSubClassMaskRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_visual_effects::ItemVisualEffects

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemVisualEffects.dbc"

Source§

type Row = ItemVisualEffectsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::item_visuals::ItemVisuals

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ItemVisuals.dbc"

Source§

type Row = ItemVisualsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::language_words::LanguageWords

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LanguageWords.dbc"

Source§

type Row = LanguageWordsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::languages::Languages

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Languages.dbc"

Source§

type Row = LanguagesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::lfg_dungeons::LFGDungeons

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LFGDungeons.dbc"

Source§

type Row = LFGDungeonsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::light::Light

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Light.dbc"

Source§

type Row = LightRow

Source§

impl DbcTable for wow_dbc::tbc_tables::light_float_band::LightFloatBand

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LightFloatBand.dbc"

Source§

type Row = LightFloatBandRow

Source§

impl DbcTable for wow_dbc::tbc_tables::light_int_band::LightIntBand

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LightIntBand.dbc"

Source§

type Row = LightIntBandRow

Source§

impl DbcTable for wow_dbc::tbc_tables::light_params::LightParams

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LightParams.dbc"

Source§

type Row = LightParamsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::light_skybox::LightSkybox

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LightSkybox.dbc"

Source§

type Row = LightSkyboxRow

Source§

impl DbcTable for wow_dbc::tbc_tables::liquid_type::LiquidType

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LiquidType.dbc"

Source§

type Row = LiquidTypeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LoadingScreenTaxiSplines.dbc"

Source§

type Row = LoadingScreenTaxiSplinesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::loading_screens::LoadingScreens

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LoadingScreens.dbc"

Source§

type Row = LoadingScreensRow

Source§

impl DbcTable for wow_dbc::tbc_tables::lock::Lock

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Lock.dbc"

Source§

type Row = LockRow

Source§

impl DbcTable for wow_dbc::tbc_tables::lock_type::LockType

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "LockType.dbc"

Source§

type Row = LockTypeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::mail_template::MailTemplate

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "MailTemplate.dbc"

Source§

type Row = MailTemplateRow

Source§

impl DbcTable for wow_dbc::tbc_tables::map::Map

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Map.dbc"

Source§

type Row = MapRow

Source§

impl DbcTable for wow_dbc::tbc_tables::material::Material

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Material.dbc"

Source§

type Row = MaterialRow

Source§

impl DbcTable for wow_dbc::tbc_tables::name_gen::NameGen

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "NameGen.dbc"

Source§

type Row = NameGenRow

Source§

impl DbcTable for wow_dbc::tbc_tables::names_profanity::NamesProfanity

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "NamesProfanity.dbc"

Source§

type Row = NamesProfanityRow

Source§

impl DbcTable for wow_dbc::tbc_tables::names_reserved::NamesReserved

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "NamesReserved.dbc"

Source§

type Row = NamesReservedRow

Source§

impl DbcTable for wow_dbc::tbc_tables::npc_sounds::NPCSounds

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "NPCSounds.dbc"

Source§

type Row = NPCSoundsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::package::Package

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Package.dbc"

Source§

type Row = PackageRow

Source§

impl DbcTable for wow_dbc::tbc_tables::page_text_material::PageTextMaterial

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "PageTextMaterial.dbc"

Source§

type Row = PageTextMaterialRow

Source§

impl DbcTable for wow_dbc::tbc_tables::paper_doll_item_frame::PaperDollItemFrame

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "PaperDollItemFrame.dbc"

Source§

type Row = PaperDollItemFrameRow

Source§

impl DbcTable for wow_dbc::tbc_tables::particle_color::ParticleColor

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ParticleColor.dbc"

Source§

type Row = ParticleColorRow

Source§

impl DbcTable for wow_dbc::tbc_tables::pet_loyalty::PetLoyalty

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "PetLoyalty.dbc"

Source§

type Row = PetLoyaltyRow

Source§

impl DbcTable for wow_dbc::tbc_tables::pet_personality::PetPersonality

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "PetPersonality.dbc"

Source§

type Row = PetPersonalityRow

Source§

impl DbcTable for wow_dbc::tbc_tables::petition_type::PetitionType

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "PetitionType.dbc"

Source§

type Row = PetitionTypeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::quest_info::QuestInfo

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "QuestInfo.dbc"

Source§

type Row = QuestInfoRow

Source§

impl DbcTable for wow_dbc::tbc_tables::quest_sort::QuestSort

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "QuestSort.dbc"

Source§

type Row = QuestSortRow

Source§

impl DbcTable for wow_dbc::tbc_tables::rand_prop_points::RandPropPoints

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "RandPropPoints.dbc"

Source§

type Row = RandPropPointsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::resistances::Resistances

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Resistances.dbc"

Source§

type Row = ResistancesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::server_messages::ServerMessages

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ServerMessages.dbc"

Source§

type Row = ServerMessagesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::sheathe_sound_lookups::SheatheSoundLookups

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SheatheSoundLookups.dbc"

Source§

type Row = SheatheSoundLookupsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::skill_costs_data::SkillCostsData

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SkillCostsData.dbc"

Source§

type Row = SkillCostsDataRow

Source§

impl DbcTable for wow_dbc::tbc_tables::skill_line::SkillLine

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SkillLine.dbc"

Source§

type Row = SkillLineRow

Source§

impl DbcTable for wow_dbc::tbc_tables::skill_line_ability::SkillLineAbility

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SkillLineAbility.dbc"

Source§

type Row = SkillLineAbilityRow

Source§

impl DbcTable for wow_dbc::tbc_tables::skill_line_category::SkillLineCategory

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SkillLineCategory.dbc"

Source§

type Row = SkillLineCategoryRow

Source§

impl DbcTable for wow_dbc::tbc_tables::skill_race_class_info::SkillRaceClassInfo

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SkillRaceClassInfo.dbc"

Source§

type Row = SkillRaceClassInfoRow

Source§

impl DbcTable for wow_dbc::tbc_tables::skill_tiers::SkillTiers

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SkillTiers.dbc"

Source§

type Row = SkillTiersRow

Source§

impl DbcTable for wow_dbc::tbc_tables::sound_ambience::SoundAmbience

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SoundAmbience.dbc"

Source§

type Row = SoundAmbienceRow

Source§

impl DbcTable for wow_dbc::tbc_tables::sound_entries::SoundEntries

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SoundEntries.dbc"

Source§

type Row = SoundEntriesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::sound_provider_preferences::SoundProviderPreferences

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SoundProviderPreferences.dbc"

Source§

type Row = SoundProviderPreferencesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::sound_sample_preferences::SoundSamplePreferences

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SoundSamplePreferences.dbc"

Source§

type Row = SoundSamplePreferencesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::sound_water_type::SoundWaterType

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SoundWaterType.dbc"

Source§

type Row = SoundWaterTypeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spam_messages::SpamMessages

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpamMessages.dbc"

Source§

type Row = SpamMessagesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell::Spell

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Spell.dbc"

Source§

type Row = SpellRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_cast_times::SpellCastTimes

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellCastTimes.dbc"

Source§

type Row = SpellCastTimesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_category::SpellCategory

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellCategory.dbc"

Source§

type Row = SpellCategoryRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_chain_effects::SpellChainEffects

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellChainEffects.dbc"

Source§

type Row = SpellChainEffectsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_dispel_type::SpellDispelType

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellDispelType.dbc"

Source§

type Row = SpellDispelTypeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_duration::SpellDuration

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellDuration.dbc"

Source§

type Row = SpellDurationRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_effect_camera_shakes::SpellEffectCameraShakes

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellEffectCameraShakes.dbc"

Source§

type Row = SpellEffectCameraShakesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_focus_object::SpellFocusObject

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellFocusObject.dbc"

Source§

type Row = SpellFocusObjectRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_icon::SpellIcon

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellIcon.dbc"

Source§

type Row = SpellIconRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_item_enchantment::SpellItemEnchantment

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellItemEnchantment.dbc"

Source§

type Row = SpellItemEnchantmentRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellItemEnchantmentCondition.dbc"

Source§

type Row = SpellItemEnchantmentConditionRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_mechanic::SpellMechanic

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellMechanic.dbc"

Source§

type Row = SpellMechanicRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_missile_motion::SpellMissileMotion

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellMissileMotion.dbc"

Source§

type Row = SpellMissileMotionRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_radius::SpellRadius

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellRadius.dbc"

Source§

type Row = SpellRadiusRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_range::SpellRange

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellRange.dbc"

Source§

type Row = SpellRangeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_shapeshift_form::SpellShapeshiftForm

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellShapeshiftForm.dbc"

Source§

type Row = SpellShapeshiftFormRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_visual::SpellVisual

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellVisual.dbc"

Source§

type Row = SpellVisualRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_visual_effect_name::SpellVisualEffectName

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellVisualEffectName.dbc"

Source§

type Row = SpellVisualEffectNameRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_visual_kit::SpellVisualKit

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellVisualKit.dbc"

Source§

type Row = SpellVisualKitRow

Source§

impl DbcTable for wow_dbc::tbc_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SpellVisualPrecastTransitions.dbc"

Source§

type Row = SpellVisualPrecastTransitionsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::stable_slot_prices::StableSlotPrices

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "StableSlotPrices.dbc"

Source§

type Row = StableSlotPricesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::startup_strings::Startup_Strings

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Startup_Strings.dbc"

Source§

type Row = Startup_StringsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::stationery::Stationery

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Stationery.dbc"

Source§

type Row = StationeryRow

Source§

impl DbcTable for wow_dbc::tbc_tables::string_lookups::StringLookups

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "StringLookups.dbc"

Source§

type Row = StringLookupsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::summon_properties::SummonProperties

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "SummonProperties.dbc"

Source§

type Row = SummonPropertiesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::talent::Talent

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Talent.dbc"

Source§

type Row = TalentRow

Source§

impl DbcTable for wow_dbc::tbc_tables::talent_tab::TalentTab

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TalentTab.dbc"

Source§

type Row = TalentTabRow

Source§

impl DbcTable for wow_dbc::tbc_tables::taxi_nodes::TaxiNodes

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TaxiNodes.dbc"

Source§

type Row = TaxiNodesRow

Source§

impl DbcTable for wow_dbc::tbc_tables::taxi_path::TaxiPath

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TaxiPath.dbc"

Source§

type Row = TaxiPathRow

Source§

impl DbcTable for wow_dbc::tbc_tables::taxi_path_node::TaxiPathNode

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TaxiPathNode.dbc"

Source§

type Row = TaxiPathNodeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::terrain_type::TerrainType

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TerrainType.dbc"

Source§

type Row = TerrainTypeRow

Source§

impl DbcTable for wow_dbc::tbc_tables::terrain_type_sounds::TerrainTypeSounds

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TerrainTypeSounds.dbc"

Source§

type Row = TerrainTypeSoundsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::totem_category::TotemCategory

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TotemCategory.dbc"

Source§

type Row = TotemCategoryRow

Source§

impl DbcTable for wow_dbc::tbc_tables::transport_animation::TransportAnimation

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TransportAnimation.dbc"

Source§

type Row = TransportAnimationRow

Source§

impl DbcTable for wow_dbc::tbc_tables::transport_physics::TransportPhysics

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "TransportPhysics.dbc"

Source§

type Row = TransportPhysicsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::ui_sound_lookups::UISoundLookups

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "UISoundLookups.dbc"

Source§

type Row = UISoundLookupsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::unit_blood::UnitBlood

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "UnitBlood.dbc"

Source§

type Row = UnitBloodRow

Source§

impl DbcTable for wow_dbc::tbc_tables::unit_blood_levels::UnitBloodLevels

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "UnitBloodLevels.dbc"

Source§

type Row = UnitBloodLevelsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::video_hardware::VideoHardware

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "VideoHardware.dbc"

Source§

type Row = VideoHardwareRow

Source§

impl DbcTable for wow_dbc::tbc_tables::vocal_ui_sounds::VocalUISounds

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "VocalUISounds.dbc"

Source§

type Row = VocalUISoundsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::weapon_impact_sounds::WeaponImpactSounds

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WeaponImpactSounds.dbc"

Source§

type Row = WeaponImpactSoundsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::weapon_swing_sounds2::WeaponSwingSounds2

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WeaponSwingSounds2.dbc"

Source§

type Row = WeaponSwingSounds2Row

Source§

impl DbcTable for wow_dbc::tbc_tables::weather::Weather

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "Weather.dbc"

Source§

type Row = WeatherRow

Source§

impl DbcTable for wow_dbc::tbc_tables::wmo_area_table::WMOAreaTable

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WMOAreaTable.dbc"

Source§

type Row = WMOAreaTableRow

Source§

impl DbcTable for wow_dbc::tbc_tables::world_map_area::WorldMapArea

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WorldMapArea.dbc"

Source§

type Row = WorldMapAreaRow

Source§

impl DbcTable for wow_dbc::tbc_tables::world_map_continent::WorldMapContinent

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WorldMapContinent.dbc"

Source§

type Row = WorldMapContinentRow

Source§

impl DbcTable for wow_dbc::tbc_tables::world_map_overlay::WorldMapOverlay

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WorldMapOverlay.dbc"

Source§

type Row = WorldMapOverlayRow

Source§

impl DbcTable for wow_dbc::tbc_tables::world_map_transforms::WorldMapTransforms

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WorldMapTransforms.dbc"

Source§

type Row = WorldMapTransformsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::world_safe_locs::WorldSafeLocs

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WorldSafeLocs.dbc"

Source§

type Row = WorldSafeLocsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::world_state_ui::WorldStateUI

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WorldStateUI.dbc"

Source§

type Row = WorldStateUIRow

Source§

impl DbcTable for wow_dbc::tbc_tables::world_state_zone_sounds::WorldStateZoneSounds

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WorldStateZoneSounds.dbc"

Source§

type Row = WorldStateZoneSoundsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::wow_error_strings::WowError_Strings

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "WowError_Strings.dbc"

Source§

type Row = WowError_StringsRow

Source§

impl DbcTable for wow_dbc::tbc_tables::zone_intro_music_table::ZoneIntroMusicTable

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ZoneIntroMusicTable.dbc"

Source§

type Row = ZoneIntroMusicTableRow

Source§

impl DbcTable for wow_dbc::tbc_tables::zone_music::ZoneMusic

Available on crate feature tbc only.
Source§

const FILENAME: &'static str = "ZoneMusic.dbc"

Source§

type Row = ZoneMusicRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::animation_data::AnimationData

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "AnimationData.dbc"

Source§

type Row = AnimationDataRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::area_poi::AreaPOI

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "AreaPOI.dbc"

Source§

type Row = AreaPOIRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::area_table::AreaTable

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "AreaTable.dbc"

Source§

type Row = AreaTableRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::area_trigger::AreaTrigger

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "AreaTrigger.dbc"

Source§

type Row = AreaTriggerRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::attack_anim_kits::AttackAnimKits

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "AttackAnimKits.dbc"

Source§

type Row = AttackAnimKitsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::attack_anim_types::AttackAnimTypes

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "AttackAnimTypes.dbc"

Source§

type Row = AttackAnimTypesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::auction_house::AuctionHouse

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "AuctionHouse.dbc"

Source§

type Row = AuctionHouseRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::bank_bag_slot_prices::BankBagSlotPrices

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "BankBagSlotPrices.dbc"

Source§

type Row = BankBagSlotPricesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::camera_shakes::CameraShakes

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CameraShakes.dbc"

Source§

type Row = CameraShakesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::cfg_categories::Cfg_Categories

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Cfg_Categories.dbc"

Source§

type Row = Cfg_CategoriesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::cfg_configs::Cfg_Configs

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Cfg_Configs.dbc"

Source§

type Row = Cfg_ConfigsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::char_base_info::CharBaseInfo

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharBaseInfo.dbc"

Source§

type Row = CharBaseInfoRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::char_hair_geosets::CharHairGeosets

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharHairGeosets.dbc"

Source§

type Row = CharHairGeosetsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::char_hair_textures::CharHairTextures

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharHairTextures.dbc"

Source§

type Row = CharHairTexturesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::char_sections::CharSections

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharSections.dbc"

Source§

type Row = CharSectionsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::char_start_outfit::CharStartOutfit

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharStartOutfit.dbc"

Source§

type Row = CharStartOutfitRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::char_variations::CharVariations

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharVariations.dbc"

Source§

type Row = CharVariationsRow

Source§

impl DbcTable for CharacterCreateCameras

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharacterCreateCameras.dbc"

Source§

type Row = CharacterCreateCamerasRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::character_facial_hair_styles::CharacterFacialHairStyles

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CharacterFacialHairStyles.dbc"

Source§

type Row = CharacterFacialHairStylesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::chat_channels::ChatChannels

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ChatChannels.dbc"

Source§

type Row = ChatChannelsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::chat_profanity::ChatProfanity

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ChatProfanity.dbc"

Source§

type Row = ChatProfanityRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::chr_classes::ChrClasses

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ChrClasses.dbc"

Source§

type Row = ChrClassesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::chr_races::ChrRaces

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ChrRaces.dbc"

Source§

type Row = ChrRacesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::cinematic_camera::CinematicCamera

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CinematicCamera.dbc"

Source§

type Row = CinematicCameraRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::cinematic_sequences::CinematicSequences

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CinematicSequences.dbc"

Source§

type Row = CinematicSequencesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::creature_display_info::CreatureDisplayInfo

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CreatureDisplayInfo.dbc"

Source§

type Row = CreatureDisplayInfoRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::creature_display_info_extra::CreatureDisplayInfoExtra

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CreatureDisplayInfoExtra.dbc"

Source§

type Row = CreatureDisplayInfoExtraRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::creature_family::CreatureFamily

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CreatureFamily.dbc"

Source§

type Row = CreatureFamilyRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::creature_model_data::CreatureModelData

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CreatureModelData.dbc"

Source§

type Row = CreatureModelDataRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::creature_sound_data::CreatureSoundData

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CreatureSoundData.dbc"

Source§

type Row = CreatureSoundDataRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::creature_spell_data::CreatureSpellData

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CreatureSpellData.dbc"

Source§

type Row = CreatureSpellDataRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::creature_type::CreatureType

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "CreatureType.dbc"

Source§

type Row = CreatureTypeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::death_thud_lookups::DeathThudLookups

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "DeathThudLookups.dbc"

Source§

type Row = DeathThudLookupsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::durability_costs::DurabilityCosts

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "DurabilityCosts.dbc"

Source§

type Row = DurabilityCostsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::durability_quality::DurabilityQuality

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "DurabilityQuality.dbc"

Source§

type Row = DurabilityQualityRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::emotes::Emotes

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Emotes.dbc"

Source§

type Row = EmotesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::emotes_text::EmotesText

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "EmotesText.dbc"

Source§

type Row = EmotesTextRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::emotes_text_data::EmotesTextData

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "EmotesTextData.dbc"

Source§

type Row = EmotesTextDataRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::emotes_text_sound::EmotesTextSound

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "EmotesTextSound.dbc"

Source§

type Row = EmotesTextSoundRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::environmental_damage::EnvironmentalDamage

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "EnvironmentalDamage.dbc"

Source§

type Row = EnvironmentalDamageRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::exhaustion::Exhaustion

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Exhaustion.dbc"

Source§

type Row = ExhaustionRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::faction::Faction

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Faction.dbc"

Source§

type Row = FactionRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::faction_group::FactionGroup

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "FactionGroup.dbc"

Source§

type Row = FactionGroupRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::faction_template::FactionTemplate

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "FactionTemplate.dbc"

Source§

type Row = FactionTemplateRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::footprint_textures::FootprintTextures

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "FootprintTextures.dbc"

Source§

type Row = FootprintTexturesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::footstep_terrain_lookup::FootstepTerrainLookup

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "FootstepTerrainLookup.dbc"

Source§

type Row = FootstepTerrainLookupRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::game_object_art_kit::GameObjectArtKit

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GameObjectArtKit.dbc"

Source§

type Row = GameObjectArtKitRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::game_object_display_info::GameObjectDisplayInfo

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GameObjectDisplayInfo.dbc"

Source§

type Row = GameObjectDisplayInfoRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::game_tips::GameTips

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GameTips.dbc"

Source§

type Row = GameTipsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::gm_survey_current_survey::GMSurveyCurrentSurvey

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GMSurveyCurrentSurvey.dbc"

Source§

type Row = GMSurveyCurrentSurveyRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::gm_survey_questions::GMSurveyQuestions

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GMSurveyQuestions.dbc"

Source§

type Row = GMSurveyQuestionsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::gm_survey_surveys::GMSurveySurveys

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GMSurveySurveys.dbc"

Source§

type Row = GMSurveySurveysRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::gm_ticket_category::GMTicketCategory

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GMTicketCategory.dbc"

Source§

type Row = GMTicketCategoryRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::ground_effect_doodad::GroundEffectDoodad

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GroundEffectDoodad.dbc"

Source§

type Row = GroundEffectDoodadRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::ground_effect_texture::GroundEffectTexture

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "GroundEffectTexture.dbc"

Source§

type Row = GroundEffectTextureRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::helmet_geoset_vis_data::HelmetGeosetVisData

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "HelmetGeosetVisData.dbc"

Source§

type Row = HelmetGeosetVisDataRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_bag_family::ItemBagFamily

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemBagFamily.dbc"

Source§

type Row = ItemBagFamilyRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_class::ItemClass

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemClass.dbc"

Source§

type Row = ItemClassRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_display_info::ItemDisplayInfo

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemDisplayInfo.dbc"

Source§

type Row = ItemDisplayInfoRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_group_sounds::ItemGroupSounds

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemGroupSounds.dbc"

Source§

type Row = ItemGroupSoundsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_pet_food::ItemPetFood

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemPetFood.dbc"

Source§

type Row = ItemPetFoodRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_random_properties::ItemRandomProperties

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemRandomProperties.dbc"

Source§

type Row = ItemRandomPropertiesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_set::ItemSet

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemSet.dbc"

Source§

type Row = ItemSetRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_sub_class::ItemSubClass

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemSubClass.dbc"

Source§

type Row = ItemSubClassRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_sub_class_mask::ItemSubClassMask

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemSubClassMask.dbc"

Source§

type Row = ItemSubClassMaskRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_visual_effects::ItemVisualEffects

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemVisualEffects.dbc"

Source§

type Row = ItemVisualEffectsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::item_visuals::ItemVisuals

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ItemVisuals.dbc"

Source§

type Row = ItemVisualsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::language_words::LanguageWords

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LanguageWords.dbc"

Source§

type Row = LanguageWordsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::languages::Languages

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Languages.dbc"

Source§

type Row = LanguagesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::lfg_dungeons::LFGDungeons

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LFGDungeons.dbc"

Source§

type Row = LFGDungeonsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::light::Light

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Light.dbc"

Source§

type Row = LightRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::light_float_band::LightFloatBand

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LightFloatBand.dbc"

Source§

type Row = LightFloatBandRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::light_int_band::LightIntBand

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LightIntBand.dbc"

Source§

type Row = LightIntBandRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::light_params::LightParams

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LightParams.dbc"

Source§

type Row = LightParamsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::light_skybox::LightSkybox

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LightSkybox.dbc"

Source§

type Row = LightSkyboxRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::liquid_type::LiquidType

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LiquidType.dbc"

Source§

type Row = LiquidTypeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LoadingScreenTaxiSplines.dbc"

Source§

type Row = LoadingScreenTaxiSplinesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::loading_screens::LoadingScreens

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LoadingScreens.dbc"

Source§

type Row = LoadingScreensRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::lock::Lock

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Lock.dbc"

Source§

type Row = LockRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::lock_type::LockType

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "LockType.dbc"

Source§

type Row = LockTypeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::mail_template::MailTemplate

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "MailTemplate.dbc"

Source§

type Row = MailTemplateRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::map::Map

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Map.dbc"

Source§

type Row = MapRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::material::Material

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Material.dbc"

Source§

type Row = MaterialRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::name_gen::NameGen

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "NameGen.dbc"

Source§

type Row = NameGenRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::names_profanity::NamesProfanity

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "NamesProfanity.dbc"

Source§

type Row = NamesProfanityRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::names_reserved::NamesReserved

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "NamesReserved.dbc"

Source§

type Row = NamesReservedRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::npc_sounds::NPCSounds

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "NPCSounds.dbc"

Source§

type Row = NPCSoundsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::package::Package

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Package.dbc"

Source§

type Row = PackageRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::page_text_material::PageTextMaterial

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "PageTextMaterial.dbc"

Source§

type Row = PageTextMaterialRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::paper_doll_item_frame::PaperDollItemFrame

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "PaperDollItemFrame.dbc"

Source§

type Row = PaperDollItemFrameRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::pet_loyalty::PetLoyalty

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "PetLoyalty.dbc"

Source§

type Row = PetLoyaltyRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::pet_personality::PetPersonality

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "PetPersonality.dbc"

Source§

type Row = PetPersonalityRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::quest_info::QuestInfo

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "QuestInfo.dbc"

Source§

type Row = QuestInfoRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::quest_sort::QuestSort

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "QuestSort.dbc"

Source§

type Row = QuestSortRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::resistances::Resistances

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Resistances.dbc"

Source§

type Row = ResistancesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::server_messages::ServerMessages

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ServerMessages.dbc"

Source§

type Row = ServerMessagesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::sheathe_sound_lookups::SheatheSoundLookups

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SheatheSoundLookups.dbc"

Source§

type Row = SheatheSoundLookupsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::skill_costs_data::SkillCostsData

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SkillCostsData.dbc"

Source§

type Row = SkillCostsDataRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::skill_line::SkillLine

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SkillLine.dbc"

Source§

type Row = SkillLineRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::skill_line_ability::SkillLineAbility

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SkillLineAbility.dbc"

Source§

type Row = SkillLineAbilityRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::skill_line_category::SkillLineCategory

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SkillLineCategory.dbc"

Source§

type Row = SkillLineCategoryRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::skill_race_class_info::SkillRaceClassInfo

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SkillRaceClassInfo.dbc"

Source§

type Row = SkillRaceClassInfoRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::skill_tiers::SkillTiers

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SkillTiers.dbc"

Source§

type Row = SkillTiersRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::sound_ambience::SoundAmbience

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SoundAmbience.dbc"

Source§

type Row = SoundAmbienceRow

Source§

impl DbcTable for SoundCharacterMacroLines

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SoundCharacterMacroLines.dbc"

Source§

type Row = SoundCharacterMacroLinesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::sound_entries::SoundEntries

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SoundEntries.dbc"

Source§

type Row = SoundEntriesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::sound_provider_preferences::SoundProviderPreferences

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SoundProviderPreferences.dbc"

Source§

type Row = SoundProviderPreferencesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::sound_sample_preferences::SoundSamplePreferences

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SoundSamplePreferences.dbc"

Source§

type Row = SoundSamplePreferencesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::sound_water_type::SoundWaterType

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SoundWaterType.dbc"

Source§

type Row = SoundWaterTypeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spam_messages::SpamMessages

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpamMessages.dbc"

Source§

type Row = SpamMessagesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell::Spell

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Spell.dbc"

Source§

type Row = SpellRow

Source§

impl DbcTable for SpellAuraNames

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellAuraNames.dbc"

Source§

type Row = SpellAuraNamesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_cast_times::SpellCastTimes

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellCastTimes.dbc"

Source§

type Row = SpellCastTimesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_category::SpellCategory

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellCategory.dbc"

Source§

type Row = SpellCategoryRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_chain_effects::SpellChainEffects

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellChainEffects.dbc"

Source§

type Row = SpellChainEffectsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_dispel_type::SpellDispelType

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellDispelType.dbc"

Source§

type Row = SpellDispelTypeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_duration::SpellDuration

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellDuration.dbc"

Source§

type Row = SpellDurationRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_effect_camera_shakes::SpellEffectCameraShakes

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellEffectCameraShakes.dbc"

Source§

type Row = SpellEffectCameraShakesRow

Source§

impl DbcTable for SpellEffectNames

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellEffectNames.dbc"

Source§

type Row = SpellEffectNamesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_focus_object::SpellFocusObject

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellFocusObject.dbc"

Source§

type Row = SpellFocusObjectRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_icon::SpellIcon

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellIcon.dbc"

Source§

type Row = SpellIconRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_item_enchantment::SpellItemEnchantment

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellItemEnchantment.dbc"

Source§

type Row = SpellItemEnchantmentRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_mechanic::SpellMechanic

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellMechanic.dbc"

Source§

type Row = SpellMechanicRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_radius::SpellRadius

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellRadius.dbc"

Source§

type Row = SpellRadiusRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_range::SpellRange

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellRange.dbc"

Source§

type Row = SpellRangeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_shapeshift_form::SpellShapeshiftForm

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellShapeshiftForm.dbc"

Source§

type Row = SpellShapeshiftFormRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_visual::SpellVisual

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellVisual.dbc"

Source§

type Row = SpellVisualRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_visual_effect_name::SpellVisualEffectName

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellVisualEffectName.dbc"

Source§

type Row = SpellVisualEffectNameRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_visual_kit::SpellVisualKit

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellVisualKit.dbc"

Source§

type Row = SpellVisualKitRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "SpellVisualPrecastTransitions.dbc"

Source§

type Row = SpellVisualPrecastTransitionsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::stable_slot_prices::StableSlotPrices

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "StableSlotPrices.dbc"

Source§

type Row = StableSlotPricesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::startup_strings::Startup_Strings

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Startup_Strings.dbc"

Source§

type Row = Startup_StringsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::stationery::Stationery

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Stationery.dbc"

Source§

type Row = StationeryRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::string_lookups::StringLookups

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "StringLookups.dbc"

Source§

type Row = StringLookupsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::talent::Talent

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "Talent.dbc"

Source§

type Row = TalentRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::talent_tab::TalentTab

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "TalentTab.dbc"

Source§

type Row = TalentTabRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::taxi_nodes::TaxiNodes

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "TaxiNodes.dbc"

Source§

type Row = TaxiNodesRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::taxi_path::TaxiPath

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "TaxiPath.dbc"

Source§

type Row = TaxiPathRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::taxi_path_node::TaxiPathNode

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "TaxiPathNode.dbc"

Source§

type Row = TaxiPathNodeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::terrain_type::TerrainType

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "TerrainType.dbc"

Source§

type Row = TerrainTypeRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::terrain_type_sounds::TerrainTypeSounds

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "TerrainTypeSounds.dbc"

Source§

type Row = TerrainTypeSoundsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::transport_animation::TransportAnimation

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "TransportAnimation.dbc"

Source§

type Row = TransportAnimationRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::ui_sound_lookups::UISoundLookups

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "UISoundLookups.dbc"

Source§

type Row = UISoundLookupsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::unit_blood::UnitBlood

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "UnitBlood.dbc"

Source§

type Row = UnitBloodRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::unit_blood_levels::UnitBloodLevels

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "UnitBloodLevels.dbc"

Source§

type Row = UnitBloodLevelsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::video_hardware::VideoHardware

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "VideoHardware.dbc"

Source§

type Row = VideoHardwareRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::vocal_ui_sounds::VocalUISounds

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "VocalUISounds.dbc"

Source§

type Row = VocalUISoundsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::weapon_impact_sounds::WeaponImpactSounds

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WeaponImpactSounds.dbc"

Source§

type Row = WeaponImpactSoundsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::weapon_swing_sounds2::WeaponSwingSounds2

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WeaponSwingSounds2.dbc"

Source§

type Row = WeaponSwingSounds2Row

Source§

impl DbcTable for wow_dbc::vanilla_tables::wmo_area_table::WMOAreaTable

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WMOAreaTable.dbc"

Source§

type Row = WMOAreaTableRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::world_map_area::WorldMapArea

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WorldMapArea.dbc"

Source§

type Row = WorldMapAreaRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::world_map_continent::WorldMapContinent

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WorldMapContinent.dbc"

Source§

type Row = WorldMapContinentRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::world_map_overlay::WorldMapOverlay

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WorldMapOverlay.dbc"

Source§

type Row = WorldMapOverlayRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::world_safe_locs::WorldSafeLocs

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WorldSafeLocs.dbc"

Source§

type Row = WorldSafeLocsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::world_state_ui::WorldStateUI

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WorldStateUI.dbc"

Source§

type Row = WorldStateUIRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::wow_error_strings::WowError_Strings

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "WowError_Strings.dbc"

Source§

type Row = WowError_StringsRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::zone_intro_music_table::ZoneIntroMusicTable

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ZoneIntroMusicTable.dbc"

Source§

type Row = ZoneIntroMusicTableRow

Source§

impl DbcTable for wow_dbc::vanilla_tables::zone_music::ZoneMusic

Available on crate feature vanilla only.
Source§

const FILENAME: &'static str = "ZoneMusic.dbc"

Source§

type Row = ZoneMusicRow

Source§

impl DbcTable for Achievement

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Achievement.dbc"

Source§

type Row = AchievementRow

Source§

impl DbcTable for Achievement_Category

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Achievement_Category.dbc"

Source§

type Row = Achievement_CategoryRow

Source§

impl DbcTable for Achievement_Criteria

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Achievement_Criteria.dbc"

Source§

type Row = Achievement_CriteriaRow

Source§

impl DbcTable for wow_dbc::wrath_tables::animation_data::AnimationData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AnimationData.dbc"

Source§

type Row = AnimationDataRow

Source§

impl DbcTable for AreaGroup

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AreaGroup.dbc"

Source§

type Row = AreaGroupRow

Source§

impl DbcTable for wow_dbc::wrath_tables::area_poi::AreaPOI

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AreaPOI.dbc"

Source§

type Row = AreaPOIRow

Source§

impl DbcTable for wow_dbc::wrath_tables::area_table::AreaTable

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AreaTable.dbc"

Source§

type Row = AreaTableRow

Source§

impl DbcTable for wow_dbc::wrath_tables::area_trigger::AreaTrigger

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AreaTrigger.dbc"

Source§

type Row = AreaTriggerRow

Source§

impl DbcTable for wow_dbc::wrath_tables::attack_anim_kits::AttackAnimKits

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AttackAnimKits.dbc"

Source§

type Row = AttackAnimKitsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::attack_anim_types::AttackAnimTypes

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AttackAnimTypes.dbc"

Source§

type Row = AttackAnimTypesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::auction_house::AuctionHouse

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "AuctionHouse.dbc"

Source§

type Row = AuctionHouseRow

Source§

impl DbcTable for wow_dbc::wrath_tables::bank_bag_slot_prices::BankBagSlotPrices

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "BankBagSlotPrices.dbc"

Source§

type Row = BankBagSlotPricesRow

Source§

impl DbcTable for BannedAddOns

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "BannedAddOns.dbc"

Source§

type Row = BannedAddOnsRow

Source§

impl DbcTable for BarberShopStyle

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "BarberShopStyle.dbc"

Source§

type Row = BarberShopStyleRow

Source§

impl DbcTable for wow_dbc::wrath_tables::battlemaster_list::BattlemasterList

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "BattlemasterList.dbc"

Source§

type Row = BattlemasterListRow

Source§

impl DbcTable for wow_dbc::wrath_tables::camera_shakes::CameraShakes

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CameraShakes.dbc"

Source§

type Row = CameraShakesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::cfg_categories::Cfg_Categories

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Cfg_Categories.dbc"

Source§

type Row = Cfg_CategoriesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::cfg_configs::Cfg_Configs

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Cfg_Configs.dbc"

Source§

type Row = Cfg_ConfigsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::char_base_info::CharBaseInfo

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharBaseInfo.dbc"

Source§

type Row = CharBaseInfoRow

Source§

impl DbcTable for wow_dbc::wrath_tables::char_hair_geosets::CharHairGeosets

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharHairGeosets.dbc"

Source§

type Row = CharHairGeosetsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::char_hair_textures::CharHairTextures

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharHairTextures.dbc"

Source§

type Row = CharHairTexturesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::char_sections::CharSections

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharSections.dbc"

Source§

type Row = CharSectionsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::char_start_outfit::CharStartOutfit

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharStartOutfit.dbc"

Source§

type Row = CharStartOutfitRow

Source§

impl DbcTable for wow_dbc::wrath_tables::char_titles::CharTitles

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharTitles.dbc"

Source§

type Row = CharTitlesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::char_variations::CharVariations

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharVariations.dbc"

Source§

type Row = CharVariationsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::character_facial_hair_styles::CharacterFacialHairStyles

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CharacterFacialHairStyles.dbc"

Source§

type Row = CharacterFacialHairStylesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::chat_channels::ChatChannels

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ChatChannels.dbc"

Source§

type Row = ChatChannelsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::chat_profanity::ChatProfanity

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ChatProfanity.dbc"

Source§

type Row = ChatProfanityRow

Source§

impl DbcTable for wow_dbc::wrath_tables::chr_classes::ChrClasses

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ChrClasses.dbc"

Source§

type Row = ChrClassesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::chr_races::ChrRaces

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ChrRaces.dbc"

Source§

type Row = ChrRacesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::cinematic_camera::CinematicCamera

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CinematicCamera.dbc"

Source§

type Row = CinematicCameraRow

Source§

impl DbcTable for wow_dbc::wrath_tables::cinematic_sequences::CinematicSequences

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CinematicSequences.dbc"

Source§

type Row = CinematicSequencesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::creature_display_info::CreatureDisplayInfo

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureDisplayInfo.dbc"

Source§

type Row = CreatureDisplayInfoRow

Source§

impl DbcTable for wow_dbc::wrath_tables::creature_display_info_extra::CreatureDisplayInfoExtra

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureDisplayInfoExtra.dbc"

Source§

type Row = CreatureDisplayInfoExtraRow

Source§

impl DbcTable for wow_dbc::wrath_tables::creature_family::CreatureFamily

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureFamily.dbc"

Source§

type Row = CreatureFamilyRow

Source§

impl DbcTable for wow_dbc::wrath_tables::creature_model_data::CreatureModelData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureModelData.dbc"

Source§

type Row = CreatureModelDataRow

Source§

impl DbcTable for CreatureMovementInfo

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureMovementInfo.dbc"

Source§

type Row = CreatureMovementInfoRow

Source§

impl DbcTable for wow_dbc::wrath_tables::creature_sound_data::CreatureSoundData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureSoundData.dbc"

Source§

type Row = CreatureSoundDataRow

Source§

impl DbcTable for wow_dbc::wrath_tables::creature_spell_data::CreatureSpellData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureSpellData.dbc"

Source§

type Row = CreatureSpellDataRow

Source§

impl DbcTable for wow_dbc::wrath_tables::creature_type::CreatureType

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CreatureType.dbc"

Source§

type Row = CreatureTypeRow

Source§

impl DbcTable for CurrencyCategory

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CurrencyCategory.dbc"

Source§

type Row = CurrencyCategoryRow

Source§

impl DbcTable for CurrencyTypes

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "CurrencyTypes.dbc"

Source§

type Row = CurrencyTypesRow

Source§

impl DbcTable for DanceMoves

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DanceMoves.dbc"

Source§

type Row = DanceMovesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::death_thud_lookups::DeathThudLookups

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DeathThudLookups.dbc"

Source§

type Row = DeathThudLookupsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::declined_word::DeclinedWord

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DeclinedWord.dbc"

Source§

type Row = DeclinedWordRow

Source§

impl DbcTable for wow_dbc::wrath_tables::declined_word_cases::DeclinedWordCases

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DeclinedWordCases.dbc"

Source§

type Row = DeclinedWordCasesRow

Source§

impl DbcTable for DestructibleModelData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DestructibleModelData.dbc"

Source§

type Row = DestructibleModelDataRow

Source§

impl DbcTable for DungeonEncounter

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DungeonEncounter.dbc"

Source§

type Row = DungeonEncounterRow

Source§

impl DbcTable for DungeonMap

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DungeonMap.dbc"

Source§

type Row = DungeonMapRow

Source§

impl DbcTable for DungeonMapChunk

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DungeonMapChunk.dbc"

Source§

type Row = DungeonMapChunkRow

Source§

impl DbcTable for wow_dbc::wrath_tables::durability_costs::DurabilityCosts

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DurabilityCosts.dbc"

Source§

type Row = DurabilityCostsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::durability_quality::DurabilityQuality

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "DurabilityQuality.dbc"

Source§

type Row = DurabilityQualityRow

Source§

impl DbcTable for wow_dbc::wrath_tables::emotes::Emotes

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Emotes.dbc"

Source§

type Row = EmotesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::emotes_text::EmotesText

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "EmotesText.dbc"

Source§

type Row = EmotesTextRow

Source§

impl DbcTable for wow_dbc::wrath_tables::emotes_text_data::EmotesTextData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "EmotesTextData.dbc"

Source§

type Row = EmotesTextDataRow

Source§

impl DbcTable for wow_dbc::wrath_tables::emotes_text_sound::EmotesTextSound

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "EmotesTextSound.dbc"

Source§

type Row = EmotesTextSoundRow

Source§

impl DbcTable for wow_dbc::wrath_tables::environmental_damage::EnvironmentalDamage

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "EnvironmentalDamage.dbc"

Source§

type Row = EnvironmentalDamageRow

Source§

impl DbcTable for wow_dbc::wrath_tables::exhaustion::Exhaustion

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Exhaustion.dbc"

Source§

type Row = ExhaustionRow

Source§

impl DbcTable for wow_dbc::wrath_tables::faction::Faction

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Faction.dbc"

Source§

type Row = FactionRow

Source§

impl DbcTable for wow_dbc::wrath_tables::faction_group::FactionGroup

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "FactionGroup.dbc"

Source§

type Row = FactionGroupRow

Source§

impl DbcTable for wow_dbc::wrath_tables::faction_template::FactionTemplate

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "FactionTemplate.dbc"

Source§

type Row = FactionTemplateRow

Source§

impl DbcTable for FileData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "FileData.dbc"

Source§

type Row = FileDataRow

Source§

impl DbcTable for wow_dbc::wrath_tables::footprint_textures::FootprintTextures

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "FootprintTextures.dbc"

Source§

type Row = FootprintTexturesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::footstep_terrain_lookup::FootstepTerrainLookup

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "FootstepTerrainLookup.dbc"

Source§

type Row = FootstepTerrainLookupRow

Source§

impl DbcTable for wow_dbc::wrath_tables::game_object_art_kit::GameObjectArtKit

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GameObjectArtKit.dbc"

Source§

type Row = GameObjectArtKitRow

Source§

impl DbcTable for wow_dbc::wrath_tables::game_object_display_info::GameObjectDisplayInfo

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GameObjectDisplayInfo.dbc"

Source§

type Row = GameObjectDisplayInfoRow

Source§

impl DbcTable for wow_dbc::wrath_tables::game_tables::GameTables

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GameTables.dbc"

Source§

type Row = GameTablesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::game_tips::GameTips

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GameTips.dbc"

Source§

type Row = GameTipsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gem_properties::GemProperties

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GemProperties.dbc"

Source§

type Row = GemPropertiesRow

Source§

impl DbcTable for GlyphProperties

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GlyphProperties.dbc"

Source§

type Row = GlyphPropertiesRow

Source§

impl DbcTable for GlyphSlot

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GlyphSlot.dbc"

Source§

type Row = GlyphSlotRow

Source§

impl DbcTable for GMSurveyAnswers

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GMSurveyAnswers.dbc"

Source§

type Row = GMSurveyAnswersRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gm_survey_current_survey::GMSurveyCurrentSurvey

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GMSurveyCurrentSurvey.dbc"

Source§

type Row = GMSurveyCurrentSurveyRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gm_survey_questions::GMSurveyQuestions

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GMSurveyQuestions.dbc"

Source§

type Row = GMSurveyQuestionsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gm_survey_surveys::GMSurveySurveys

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GMSurveySurveys.dbc"

Source§

type Row = GMSurveySurveysRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gm_ticket_category::GMTicketCategory

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GMTicketCategory.dbc"

Source§

type Row = GMTicketCategoryRow

Source§

impl DbcTable for wow_dbc::wrath_tables::ground_effect_doodad::GroundEffectDoodad

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GroundEffectDoodad.dbc"

Source§

type Row = GroundEffectDoodadRow

Source§

impl DbcTable for wow_dbc::wrath_tables::ground_effect_texture::GroundEffectTexture

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "GroundEffectTexture.dbc"

Source§

type Row = GroundEffectTextureRow

Source§

impl DbcTable for gtBarberShopCostBase

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtBarberShopCostBase.dbc"

Source§

type Row = gtBarberShopCostBaseRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_melee_crit::gtChanceToMeleeCrit

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtChanceToMeleeCrit.dbc"

Source§

type Row = gtChanceToMeleeCritRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_melee_crit_base::gtChanceToMeleeCritBase

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtChanceToMeleeCritBase.dbc"

Source§

type Row = gtChanceToMeleeCritBaseRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_spell_crit::gtChanceToSpellCrit

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtChanceToSpellCrit.dbc"

Source§

type Row = gtChanceToSpellCritRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_chance_to_spell_crit_base::gtChanceToSpellCritBase

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtChanceToSpellCritBase.dbc"

Source§

type Row = gtChanceToSpellCritBaseRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_combat_ratings::gtCombatRatings

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtCombatRatings.dbc"

Source§

type Row = gtCombatRatingsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_npc_mana_cost_scaler::gtNPCManaCostScaler

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtNPCManaCostScaler.dbc"

Source§

type Row = gtNPCManaCostScalerRow

Source§

impl DbcTable for gtOCTClassCombatRatingScalar

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtOCTClassCombatRatingScalar.dbc"

Source§

type Row = gtOCTClassCombatRatingScalarRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_oct_regen_hp::gtOCTRegenHP

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtOCTRegenHP.dbc"

Source§

type Row = gtOCTRegenHPRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_oct_regen_mp::gtOCTRegenMP

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtOCTRegenMP.dbc"

Source§

type Row = gtOCTRegenMPRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_regen_hp_per_spt::gtRegenHPPerSpt

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtRegenHPPerSpt.dbc"

Source§

type Row = gtRegenHPPerSptRow

Source§

impl DbcTable for wow_dbc::wrath_tables::gt_regen_mp_per_spt::gtRegenMPPerSpt

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "gtRegenMPPerSpt.dbc"

Source§

type Row = gtRegenMPPerSptRow

Source§

impl DbcTable for wow_dbc::wrath_tables::helmet_geoset_vis_data::HelmetGeosetVisData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "HelmetGeosetVisData.dbc"

Source§

type Row = HelmetGeosetVisDataRow

Source§

impl DbcTable for HolidayDescriptions

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "HolidayDescriptions.dbc"

Source§

type Row = HolidayDescriptionsRow

Source§

impl DbcTable for HolidayNames

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "HolidayNames.dbc"

Source§

type Row = HolidayNamesRow

Source§

impl DbcTable for Holidays

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Holidays.dbc"

Source§

type Row = HolidaysRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item::Item

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Item.dbc"

Source§

type Row = ItemRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_bag_family::ItemBagFamily

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemBagFamily.dbc"

Source§

type Row = ItemBagFamilyRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_class::ItemClass

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemClass.dbc"

Source§

type Row = ItemClassRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_cond_ext_costs::ItemCondExtCosts

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemCondExtCosts.dbc"

Source§

type Row = ItemCondExtCostsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_display_info::ItemDisplayInfo

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemDisplayInfo.dbc"

Source§

type Row = ItemDisplayInfoRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_extended_cost::ItemExtendedCost

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemExtendedCost.dbc"

Source§

type Row = ItemExtendedCostRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_group_sounds::ItemGroupSounds

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemGroupSounds.dbc"

Source§

type Row = ItemGroupSoundsRow

Source§

impl DbcTable for ItemLimitCategory

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemLimitCategory.dbc"

Source§

type Row = ItemLimitCategoryRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_pet_food::ItemPetFood

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemPetFood.dbc"

Source§

type Row = ItemPetFoodRow

Source§

impl DbcTable for ItemPurchaseGroup

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemPurchaseGroup.dbc"

Source§

type Row = ItemPurchaseGroupRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_random_properties::ItemRandomProperties

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemRandomProperties.dbc"

Source§

type Row = ItemRandomPropertiesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_random_suffix::ItemRandomSuffix

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemRandomSuffix.dbc"

Source§

type Row = ItemRandomSuffixRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_set::ItemSet

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemSet.dbc"

Source§

type Row = ItemSetRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_sub_class::ItemSubClass

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemSubClass.dbc"

Source§

type Row = ItemSubClassRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_sub_class_mask::ItemSubClassMask

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemSubClassMask.dbc"

Source§

type Row = ItemSubClassMaskRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_visual_effects::ItemVisualEffects

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemVisualEffects.dbc"

Source§

type Row = ItemVisualEffectsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::item_visuals::ItemVisuals

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ItemVisuals.dbc"

Source§

type Row = ItemVisualsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::language_words::LanguageWords

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LanguageWords.dbc"

Source§

type Row = LanguageWordsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::languages::Languages

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Languages.dbc"

Source§

type Row = LanguagesRow

Source§

impl DbcTable for LFGDungeonExpansion

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LFGDungeonExpansion.dbc"

Source§

type Row = LFGDungeonExpansionRow

Source§

impl DbcTable for LFGDungeonGroup

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LFGDungeonGroup.dbc"

Source§

type Row = LFGDungeonGroupRow

Source§

impl DbcTable for wow_dbc::wrath_tables::lfg_dungeons::LFGDungeons

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LFGDungeons.dbc"

Source§

type Row = LFGDungeonsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::light::Light

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Light.dbc"

Source§

type Row = LightRow

Source§

impl DbcTable for wow_dbc::wrath_tables::light_float_band::LightFloatBand

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LightFloatBand.dbc"

Source§

type Row = LightFloatBandRow

Source§

impl DbcTable for wow_dbc::wrath_tables::light_int_band::LightIntBand

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LightIntBand.dbc"

Source§

type Row = LightIntBandRow

Source§

impl DbcTable for wow_dbc::wrath_tables::light_params::LightParams

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LightParams.dbc"

Source§

type Row = LightParamsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::light_skybox::LightSkybox

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LightSkybox.dbc"

Source§

type Row = LightSkyboxRow

Source§

impl DbcTable for LiquidMaterial

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LiquidMaterial.dbc"

Source§

type Row = LiquidMaterialRow

Source§

impl DbcTable for wow_dbc::wrath_tables::liquid_type::LiquidType

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LiquidType.dbc"

Source§

type Row = LiquidTypeRow

Source§

impl DbcTable for wow_dbc::wrath_tables::loading_screen_taxi_splines::LoadingScreenTaxiSplines

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LoadingScreenTaxiSplines.dbc"

Source§

type Row = LoadingScreenTaxiSplinesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::loading_screens::LoadingScreens

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LoadingScreens.dbc"

Source§

type Row = LoadingScreensRow

Source§

impl DbcTable for wow_dbc::wrath_tables::lock::Lock

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Lock.dbc"

Source§

type Row = LockRow

Source§

impl DbcTable for wow_dbc::wrath_tables::lock_type::LockType

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "LockType.dbc"

Source§

type Row = LockTypeRow

Source§

impl DbcTable for wow_dbc::wrath_tables::mail_template::MailTemplate

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "MailTemplate.dbc"

Source§

type Row = MailTemplateRow

Source§

impl DbcTable for wow_dbc::wrath_tables::map::Map

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Map.dbc"

Source§

type Row = MapRow

Source§

impl DbcTable for MapDifficulty

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "MapDifficulty.dbc"

Source§

type Row = MapDifficultyRow

Source§

impl DbcTable for wow_dbc::wrath_tables::material::Material

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Material.dbc"

Source§

type Row = MaterialRow

Source§

impl DbcTable for Movie

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Movie.dbc"

Source§

type Row = MovieRow

Source§

impl DbcTable for MovieFileData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "MovieFileData.dbc"

Source§

type Row = MovieFileDataRow

Source§

impl DbcTable for MovieVariation

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "MovieVariation.dbc"

Source§

type Row = MovieVariationRow

Source§

impl DbcTable for wow_dbc::wrath_tables::name_gen::NameGen

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "NameGen.dbc"

Source§

type Row = NameGenRow

Source§

impl DbcTable for wow_dbc::wrath_tables::names_profanity::NamesProfanity

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "NamesProfanity.dbc"

Source§

type Row = NamesProfanityRow

Source§

impl DbcTable for wow_dbc::wrath_tables::names_reserved::NamesReserved

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "NamesReserved.dbc"

Source§

type Row = NamesReservedRow

Source§

impl DbcTable for wow_dbc::wrath_tables::npc_sounds::NPCSounds

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "NPCSounds.dbc"

Source§

type Row = NPCSoundsRow

Source§

impl DbcTable for ObjectEffect

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ObjectEffect.dbc"

Source§

type Row = ObjectEffectRow

Source§

impl DbcTable for ObjectEffectGroup

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ObjectEffectGroup.dbc"

Source§

type Row = ObjectEffectGroupRow

Source§

impl DbcTable for ObjectEffectModifier

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ObjectEffectModifier.dbc"

Source§

type Row = ObjectEffectModifierRow

Source§

impl DbcTable for ObjectEffectPackage

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ObjectEffectPackage.dbc"

Source§

type Row = ObjectEffectPackageRow

Source§

impl DbcTable for ObjectEffectPackageElem

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ObjectEffectPackageElem.dbc"

Source§

type Row = ObjectEffectPackageElemRow

Source§

impl DbcTable for OverrideSpellData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "OverrideSpellData.dbc"

Source§

type Row = OverrideSpellDataRow

Source§

impl DbcTable for wow_dbc::wrath_tables::package::Package

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Package.dbc"

Source§

type Row = PackageRow

Source§

impl DbcTable for wow_dbc::wrath_tables::page_text_material::PageTextMaterial

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "PageTextMaterial.dbc"

Source§

type Row = PageTextMaterialRow

Source§

impl DbcTable for wow_dbc::wrath_tables::paper_doll_item_frame::PaperDollItemFrame

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "PaperDollItemFrame.dbc"

Source§

type Row = PaperDollItemFrameRow

Source§

impl DbcTable for wow_dbc::wrath_tables::particle_color::ParticleColor

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ParticleColor.dbc"

Source§

type Row = ParticleColorRow

Source§

impl DbcTable for wow_dbc::wrath_tables::pet_personality::PetPersonality

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "PetPersonality.dbc"

Source§

type Row = PetPersonalityRow

Source§

impl DbcTable for wow_dbc::wrath_tables::petition_type::PetitionType

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "PetitionType.dbc"

Source§

type Row = PetitionTypeRow

Source§

impl DbcTable for PowerDisplay

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "PowerDisplay.dbc"

Source§

type Row = PowerDisplayRow

Source§

impl DbcTable for PvpDifficulty

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "PvpDifficulty.dbc"

Source§

type Row = PvpDifficultyRow

Source§

impl DbcTable for QuestFactionReward

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "QuestFactionReward.dbc"

Source§

type Row = QuestFactionRewardRow

Source§

impl DbcTable for wow_dbc::wrath_tables::quest_info::QuestInfo

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "QuestInfo.dbc"

Source§

type Row = QuestInfoRow

Source§

impl DbcTable for wow_dbc::wrath_tables::quest_sort::QuestSort

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "QuestSort.dbc"

Source§

type Row = QuestSortRow

Source§

impl DbcTable for QuestXP

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "QuestXP.dbc"

Source§

type Row = QuestXPRow

Source§

impl DbcTable for wow_dbc::wrath_tables::rand_prop_points::RandPropPoints

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "RandPropPoints.dbc"

Source§

type Row = RandPropPointsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::resistances::Resistances

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Resistances.dbc"

Source§

type Row = ResistancesRow

Source§

impl DbcTable for ScalingStatDistribution

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ScalingStatDistribution.dbc"

Source§

type Row = ScalingStatDistributionRow

Source§

impl DbcTable for ScalingStatValues

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ScalingStatValues.dbc"

Source§

type Row = ScalingStatValuesRow

Source§

impl DbcTable for ScreenEffect

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ScreenEffect.dbc"

Source§

type Row = ScreenEffectRow

Source§

impl DbcTable for wow_dbc::wrath_tables::server_messages::ServerMessages

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ServerMessages.dbc"

Source§

type Row = ServerMessagesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::sheathe_sound_lookups::SheatheSoundLookups

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SheatheSoundLookups.dbc"

Source§

type Row = SheatheSoundLookupsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::skill_costs_data::SkillCostsData

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SkillCostsData.dbc"

Source§

type Row = SkillCostsDataRow

Source§

impl DbcTable for wow_dbc::wrath_tables::skill_line::SkillLine

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SkillLine.dbc"

Source§

type Row = SkillLineRow

Source§

impl DbcTable for wow_dbc::wrath_tables::skill_line_ability::SkillLineAbility

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SkillLineAbility.dbc"

Source§

type Row = SkillLineAbilityRow

Source§

impl DbcTable for wow_dbc::wrath_tables::skill_line_category::SkillLineCategory

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SkillLineCategory.dbc"

Source§

type Row = SkillLineCategoryRow

Source§

impl DbcTable for wow_dbc::wrath_tables::skill_race_class_info::SkillRaceClassInfo

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SkillRaceClassInfo.dbc"

Source§

type Row = SkillRaceClassInfoRow

Source§

impl DbcTable for wow_dbc::wrath_tables::skill_tiers::SkillTiers

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SkillTiers.dbc"

Source§

type Row = SkillTiersRow

Source§

impl DbcTable for wow_dbc::wrath_tables::sound_ambience::SoundAmbience

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundAmbience.dbc"

Source§

type Row = SoundAmbienceRow

Source§

impl DbcTable for SoundEmitters

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundEmitters.dbc"

Source§

type Row = SoundEmittersRow

Source§

impl DbcTable for wow_dbc::wrath_tables::sound_entries::SoundEntries

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundEntries.dbc"

Source§

type Row = SoundEntriesRow

Source§

impl DbcTable for SoundEntriesAdvanced

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundEntriesAdvanced.dbc"

Source§

type Row = SoundEntriesAdvancedRow

Source§

impl DbcTable for SoundFilter

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundFilter.dbc"

Source§

type Row = SoundFilterRow

Source§

impl DbcTable for SoundFilterElem

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundFilterElem.dbc"

Source§

type Row = SoundFilterElemRow

Source§

impl DbcTable for wow_dbc::wrath_tables::sound_provider_preferences::SoundProviderPreferences

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundProviderPreferences.dbc"

Source§

type Row = SoundProviderPreferencesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::sound_sample_preferences::SoundSamplePreferences

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundSamplePreferences.dbc"

Source§

type Row = SoundSamplePreferencesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::sound_water_type::SoundWaterType

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SoundWaterType.dbc"

Source§

type Row = SoundWaterTypeRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spam_messages::SpamMessages

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpamMessages.dbc"

Source§

type Row = SpamMessagesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell::Spell

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Spell.dbc"

Source§

type Row = SpellRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_cast_times::SpellCastTimes

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellCastTimes.dbc"

Source§

type Row = SpellCastTimesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_category::SpellCategory

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellCategory.dbc"

Source§

type Row = SpellCategoryRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_chain_effects::SpellChainEffects

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellChainEffects.dbc"

Source§

type Row = SpellChainEffectsRow

Source§

impl DbcTable for SpellDescriptionVariables

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellDescriptionVariables.dbc"

Source§

type Row = SpellDescriptionVariablesRow

Source§

impl DbcTable for SpellDifficulty

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellDifficulty.dbc"

Source§

type Row = SpellDifficultyRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_dispel_type::SpellDispelType

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellDispelType.dbc"

Source§

type Row = SpellDispelTypeRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_duration::SpellDuration

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellDuration.dbc"

Source§

type Row = SpellDurationRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_effect_camera_shakes::SpellEffectCameraShakes

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellEffectCameraShakes.dbc"

Source§

type Row = SpellEffectCameraShakesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_focus_object::SpellFocusObject

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellFocusObject.dbc"

Source§

type Row = SpellFocusObjectRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_icon::SpellIcon

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellIcon.dbc"

Source§

type Row = SpellIconRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_item_enchantment::SpellItemEnchantment

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellItemEnchantment.dbc"

Source§

type Row = SpellItemEnchantmentRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_item_enchantment_condition::SpellItemEnchantmentCondition

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellItemEnchantmentCondition.dbc"

Source§

type Row = SpellItemEnchantmentConditionRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_mechanic::SpellMechanic

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellMechanic.dbc"

Source§

type Row = SpellMechanicRow

Source§

impl DbcTable for SpellMissile

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellMissile.dbc"

Source§

type Row = SpellMissileRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_missile_motion::SpellMissileMotion

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellMissileMotion.dbc"

Source§

type Row = SpellMissileMotionRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_radius::SpellRadius

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellRadius.dbc"

Source§

type Row = SpellRadiusRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_range::SpellRange

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellRange.dbc"

Source§

type Row = SpellRangeRow

Source§

impl DbcTable for SpellRuneCost

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellRuneCost.dbc"

Source§

type Row = SpellRuneCostRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_shapeshift_form::SpellShapeshiftForm

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellShapeshiftForm.dbc"

Source§

type Row = SpellShapeshiftFormRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_visual::SpellVisual

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellVisual.dbc"

Source§

type Row = SpellVisualRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_visual_effect_name::SpellVisualEffectName

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellVisualEffectName.dbc"

Source§

type Row = SpellVisualEffectNameRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_visual_kit::SpellVisualKit

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellVisualKit.dbc"

Source§

type Row = SpellVisualKitRow

Source§

impl DbcTable for SpellVisualKitAreaModel

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellVisualKitAreaModel.dbc"

Source§

type Row = SpellVisualKitAreaModelRow

Source§

impl DbcTable for SpellVisualKitModelAttach

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellVisualKitModelAttach.dbc"

Source§

type Row = SpellVisualKitModelAttachRow

Source§

impl DbcTable for wow_dbc::wrath_tables::spell_visual_precast_transitions::SpellVisualPrecastTransitions

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SpellVisualPrecastTransitions.dbc"

Source§

type Row = SpellVisualPrecastTransitionsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::stable_slot_prices::StableSlotPrices

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "StableSlotPrices.dbc"

Source§

type Row = StableSlotPricesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::startup_strings::Startup_Strings

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Startup_Strings.dbc"

Source§

type Row = Startup_StringsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::stationery::Stationery

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Stationery.dbc"

Source§

type Row = StationeryRow

Source§

impl DbcTable for wow_dbc::wrath_tables::string_lookups::StringLookups

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "StringLookups.dbc"

Source§

type Row = StringLookupsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::summon_properties::SummonProperties

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "SummonProperties.dbc"

Source§

type Row = SummonPropertiesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::talent::Talent

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Talent.dbc"

Source§

type Row = TalentRow

Source§

impl DbcTable for wow_dbc::wrath_tables::talent_tab::TalentTab

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TalentTab.dbc"

Source§

type Row = TalentTabRow

Source§

impl DbcTable for wow_dbc::wrath_tables::taxi_nodes::TaxiNodes

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TaxiNodes.dbc"

Source§

type Row = TaxiNodesRow

Source§

impl DbcTable for wow_dbc::wrath_tables::taxi_path::TaxiPath

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TaxiPath.dbc"

Source§

type Row = TaxiPathRow

Source§

impl DbcTable for wow_dbc::wrath_tables::taxi_path_node::TaxiPathNode

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TaxiPathNode.dbc"

Source§

type Row = TaxiPathNodeRow

Source§

impl DbcTable for TeamContributionPoints

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TeamContributionPoints.dbc"

Source§

type Row = TeamContributionPointsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::terrain_type::TerrainType

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TerrainType.dbc"

Source§

type Row = TerrainTypeRow

Source§

impl DbcTable for wow_dbc::wrath_tables::terrain_type_sounds::TerrainTypeSounds

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TerrainTypeSounds.dbc"

Source§

type Row = TerrainTypeSoundsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::totem_category::TotemCategory

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TotemCategory.dbc"

Source§

type Row = TotemCategoryRow

Source§

impl DbcTable for wow_dbc::wrath_tables::transport_animation::TransportAnimation

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TransportAnimation.dbc"

Source§

type Row = TransportAnimationRow

Source§

impl DbcTable for wow_dbc::wrath_tables::transport_physics::TransportPhysics

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TransportPhysics.dbc"

Source§

type Row = TransportPhysicsRow

Source§

impl DbcTable for TransportRotation

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "TransportRotation.dbc"

Source§

type Row = TransportRotationRow

Source§

impl DbcTable for wow_dbc::wrath_tables::ui_sound_lookups::UISoundLookups

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "UISoundLookups.dbc"

Source§

type Row = UISoundLookupsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::unit_blood::UnitBlood

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "UnitBlood.dbc"

Source§

type Row = UnitBloodRow

Source§

impl DbcTable for wow_dbc::wrath_tables::unit_blood_levels::UnitBloodLevels

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "UnitBloodLevels.dbc"

Source§

type Row = UnitBloodLevelsRow

Source§

impl DbcTable for Vehicle

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Vehicle.dbc"

Source§

type Row = VehicleRow

Source§

impl DbcTable for VehicleSeat

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "VehicleSeat.dbc"

Source§

type Row = VehicleSeatRow

Source§

impl DbcTable for VehicleUIIndSeat

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "VehicleUIIndSeat.dbc"

Source§

type Row = VehicleUIIndSeatRow

Source§

impl DbcTable for VehicleUIIndicator

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "VehicleUIIndicator.dbc"

Source§

type Row = VehicleUIIndicatorRow

Source§

impl DbcTable for wow_dbc::wrath_tables::video_hardware::VideoHardware

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "VideoHardware.dbc"

Source§

type Row = VideoHardwareRow

Source§

impl DbcTable for wow_dbc::wrath_tables::vocal_ui_sounds::VocalUISounds

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "VocalUISounds.dbc"

Source§

type Row = VocalUISoundsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::weapon_impact_sounds::WeaponImpactSounds

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WeaponImpactSounds.dbc"

Source§

type Row = WeaponImpactSoundsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::weapon_swing_sounds2::WeaponSwingSounds2

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WeaponSwingSounds2.dbc"

Source§

type Row = WeaponSwingSounds2Row

Source§

impl DbcTable for wow_dbc::wrath_tables::weather::Weather

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "Weather.dbc"

Source§

type Row = WeatherRow

Source§

impl DbcTable for wow_dbc::wrath_tables::wmo_area_table::WMOAreaTable

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WMOAreaTable.dbc"

Source§

type Row = WMOAreaTableRow

Source§

impl DbcTable for WorldChunkSounds

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldChunkSounds.dbc"

Source§

type Row = WorldChunkSoundsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::world_map_area::WorldMapArea

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldMapArea.dbc"

Source§

type Row = WorldMapAreaRow

Source§

impl DbcTable for wow_dbc::wrath_tables::world_map_continent::WorldMapContinent

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldMapContinent.dbc"

Source§

type Row = WorldMapContinentRow

Source§

impl DbcTable for wow_dbc::wrath_tables::world_map_overlay::WorldMapOverlay

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldMapOverlay.dbc"

Source§

type Row = WorldMapOverlayRow

Source§

impl DbcTable for wow_dbc::wrath_tables::world_map_transforms::WorldMapTransforms

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldMapTransforms.dbc"

Source§

type Row = WorldMapTransformsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::world_safe_locs::WorldSafeLocs

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldSafeLocs.dbc"

Source§

type Row = WorldSafeLocsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::world_state_ui::WorldStateUI

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldStateUI.dbc"

Source§

type Row = WorldStateUIRow

Source§

impl DbcTable for wow_dbc::wrath_tables::world_state_zone_sounds::WorldStateZoneSounds

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WorldStateZoneSounds.dbc"

Source§

type Row = WorldStateZoneSoundsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::wow_error_strings::WowError_Strings

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "WowError_Strings.dbc"

Source§

type Row = WowError_StringsRow

Source§

impl DbcTable for wow_dbc::wrath_tables::zone_intro_music_table::ZoneIntroMusicTable

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ZoneIntroMusicTable.dbc"

Source§

type Row = ZoneIntroMusicTableRow

Source§

impl DbcTable for wow_dbc::wrath_tables::zone_music::ZoneMusic

Available on crate feature wrath only.
Source§

const FILENAME: &'static str = "ZoneMusic.dbc"

Source§

type Row = ZoneMusicRow