struct ManifestValidator<'a> {
manifest: &'a Manifest,
auras: IndexSet<&'a str>,
spells: IndexSet<&'a str>,
talents: IndexSet<&'a str>,
diagnostics: Vec<ManifestDiagnostic>,
}Fields§
§manifest: &'a Manifest§auras: IndexSet<&'a str>§spells: IndexSet<&'a str>§talents: IndexSet<&'a str>§diagnostics: Vec<ManifestDiagnostic>Implementations§
Source§impl<'a> ManifestValidator<'a>
impl<'a> ManifestValidator<'a>
fn new(manifest: &'a Manifest) -> Self
fn validate(self) -> Vec<ManifestDiagnostic>
fn validate_spec_and_auras(&mut self)
fn validate_spells_and_auto_attacks(&mut self)
fn validate_spell_reference_fields( &mut self, spell: &ManifestSpellDef, location: &ManifestDiagnosticLocation, )
fn validate_collections(&mut self)
fn validate_talent_gated_aura_effects(&mut self)
Auto Trait Implementations§
impl<'a> Freeze for ManifestValidator<'a>
impl<'a> RefUnwindSafe for ManifestValidator<'a>
impl<'a> Send for ManifestValidator<'a>
impl<'a> Sync for ManifestValidator<'a>
impl<'a> Unpin for ManifestValidator<'a>
impl<'a> UnsafeUnpin for ManifestValidator<'a>
impl<'a> UnwindSafe for ManifestValidator<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more