pub trait KeySource<Op: GraphOperation> {
// Required method
fn fresh_input_key(&mut self) -> Op::InputKey;
}Expand description
Caller-provided source of stable eager value keys.
Required Methods§
Sourcefn fresh_input_key(&mut self) -> Op::InputKey
fn fresh_input_key(&mut self) -> Op::InputKey
Return a fresh input key that has not been used for another eager value.