pub struct CompiledProgram {
pub dependency_graph: DependencyGraph,
pub sccs: Vec<StronglyConnectedComponent>,
pub phase_graph: PhaseGraph,
pub delta_plans: Vec<DeltaRulePlan>,
pub materialized: Vec<PredicateId>,
pub rules: Vec<RuleAst>,
pub extensional_bindings: IndexMap<PredicateId, AttributeId>,
pub facts: Vec<ExtensionalFact>,
pub predicate_strata: IndexMap<PredicateId, usize>,
}Fields§
§dependency_graph: DependencyGraph§sccs: Vec<StronglyConnectedComponent>§phase_graph: PhaseGraph§delta_plans: Vec<DeltaRulePlan>§materialized: Vec<PredicateId>§rules: Vec<RuleAst>§extensional_bindings: IndexMap<PredicateId, AttributeId>§facts: Vec<ExtensionalFact>§predicate_strata: IndexMap<PredicateId, usize>Trait Implementations§
Source§impl Clone for CompiledProgram
impl Clone for CompiledProgram
Source§fn clone(&self) -> CompiledProgram
fn clone(&self) -> CompiledProgram
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompiledProgram
impl Debug for CompiledProgram
Source§impl Default for CompiledProgram
impl Default for CompiledProgram
Source§fn default() -> CompiledProgram
fn default() -> CompiledProgram
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompiledProgram
impl<'de> Deserialize<'de> for CompiledProgram
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CompiledProgram
impl PartialEq for CompiledProgram
Source§impl Serialize for CompiledProgram
impl Serialize for CompiledProgram
impl StructuralPartialEq for CompiledProgram
Auto Trait Implementations§
impl Freeze for CompiledProgram
impl RefUnwindSafe for CompiledProgram
impl Send for CompiledProgram
impl Sync for CompiledProgram
impl Unpin for CompiledProgram
impl UnwindSafe for CompiledProgram
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