mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-15 01:39:25 +00:00
Change QueryInputs
to QueryEdges
This commit is contained in:
parent
8e54a9bb3e
commit
064f26db8f
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ use crate::{AsId, DatabaseKeyIndex, Durability, Id, IngredientIndex, Revision, R
|
||||||
use crate::cycle::CycleRecoveryStrategy;
|
use crate::cycle::CycleRecoveryStrategy;
|
||||||
use crate::ingredient::Ingredient;
|
use crate::ingredient::Ingredient;
|
||||||
use crate::key::DependencyIndex;
|
use crate::key::DependencyIndex;
|
||||||
use crate::runtime::local_state::QueryInputs;
|
use crate::runtime::local_state::QueryEdges;
|
||||||
use crate::runtime::StampedValue;
|
use crate::runtime::StampedValue;
|
||||||
|
|
||||||
/// Ingredient used to represent the fields of a `#[salsa::input]`.
|
/// Ingredient used to represent the fields of a `#[salsa::input]`.
|
||||||
|
@ -86,7 +86,7 @@ impl<DB: ?Sized, K, F> Ingredient<DB> for InputFieldIngredient<K, F>
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
||||||
fn inputs(&self, _key_index: crate::Id) -> Option<QueryInputs> {
|
fn inputs(&self, _key_index: Id) -> Option<QueryEdges> {
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue