pub type TriplePattern<T, X> = Triple<Pattern<T, X>>;Expand description
Triple pattern, with each component either a ground resource or a variable.
Aliased Type§
pub struct TriplePattern<T, X>(pub Pattern<T, X>, pub Pattern<T, X>, pub Pattern<T, X>);Tuple Fields§
§0: Pattern<T, X>§1: Pattern<T, X>§2: Pattern<T, X>