xbrl-rs 0.3.0

XBRL parser and validation
Documentation
mod linkbases;
#[cfg(feature = "download")]
mod loader;
mod schema;
mod taxonomy_set;
mod view;

pub use linkbases::{
    locator::LinkbaseLocator,
    parser::LinkbaseParser,
    resolver::{CalculationArc, DefinitionArc, Label, PresentationArc, Reference, ReferencePart},
};
#[cfg(feature = "download")]
pub use loader::{DownloadResult, TaxonomyLoader};
pub use schema::{
    ArcroleType, Balance, BaseSubstitutionGroup, Concept, DeclaredAccuracy, ElementDecl,
    ElementParticle, GroupDef, GroupParticle, Occurrence, Particle, PeriodType, RoleType,
    SchemaParser, SubstitutionGroup, TaxonomySchema, XbrlType,
};
pub use taxonomy_set::TaxonomySet;
pub use view::{
    ConceptView, PresentationRelationView, TaxonomySectionView, TaxonomyTreeNode, TaxonomyView,
    TupleElementView, TupleParticleView,
};