Docs.rs
  • open-vaf-0.4.2
    • open-vaf 0.4.2
    • Docs.rs crate page
    • GPL-3.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • pascalkuthe
    • Dependencies
      • ahash ^0.3.8 normal
      • annotate-snippets ^0.8.0 normal
      • beef ^0.4.4 normal
      • bitflags ^1.2.1 normal
      • bumpalo ^3.4.0 normal
      • bytecount ^0.6.0 normal
      • copyless ^0.1.5 normal
      • fixedbitset ^0.3.0 normal
      • float-cmp ^0.8.0 normal
      • index_vec ^0.1.1 normal
      • indexmap ^1.4.0 normal
      • intrusive-collections ^0.9.0 normal
      • lazy_static ^1.4.0 normal
      • log ^0.4.8 normal
      • logos ^0.11.4 normal
      • more-asserts ^0.2.1 normal
      • once_cell ^1.4.0 normal
      • parking_lot ^0.10.2 normal
      • pretty_assertions ^0.6.1 normal
      • rustc-ap-graphviz ^662.0.0 normal optional
      • rustc-hash ^1.1.0 normal
      • yansi-term ^0.1.2 normal
      • fern ^0.6.0 dev
    • Versions
    • 16.34% of the crate is documented
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

open_vaf0.4.2

DependencyHandler

Required Methods

  • handle_branch_reference
  • handle_parameter_reference
  • handle_system_function_call
  • handle_variable_reference

Implementations on Foreign Types

  • ()

Implementors

In open_vaf::analysis::program_slicing

open_vaf::analysis::program_slicing

Trait DependencyHandler

Source
pub trait DependencyHandler {
    // Required methods
    fn handle_variable_reference(&mut self, var: VariableId);
    fn handle_parameter_reference(&mut self, param: ParameterId);
    fn handle_branch_reference(
        &mut self,
        access: DisciplineAccess,
        branch: BranchId,
        order: u8,
    );
    fn handle_system_function_call(
        &mut self,
        call: SystemFunctionCall<RealExpressionId, StringExpressionId, PortId, ParameterId>,
    );
}

Required Methods§

Source

fn handle_variable_reference(&mut self, var: VariableId)

Source

fn handle_parameter_reference(&mut self, param: ParameterId)

Source

fn handle_branch_reference( &mut self, access: DisciplineAccess, branch: BranchId, order: u8, )

Source

fn handle_system_function_call( &mut self, call: SystemFunctionCall<RealExpressionId, StringExpressionId, PortId, ParameterId>, )

Implementations on Foreign Types§

Source§

impl DependencyHandler for ()

Source§

fn handle_variable_reference(&mut self, _: VariableId)

Source§

fn handle_parameter_reference(&mut self, _: ParameterId)

Source§

fn handle_branch_reference(&mut self, _: DisciplineAccess, _: BranchId, _: u8)

Source§

fn handle_system_function_call( &mut self, _: SystemFunctionCall<RealExpressionId, StringExpressionId, PortId, ParameterId>, )

Implementors§