MCPcopy Create free account
hub / github.com/PRQL/prql / push_hint

Method push_hint

prqlc/prqlc-parser/src/error.rs:182–185  ·  view source on GitHub ↗
(mut self, hint: S)

Source from the content-addressed store, hash-verified

180
181impl WithErrorInfo for Error {
182 fn push_hint<S: Into<String>>(mut self, hint: S) -> Self {
183 self.hints.push(hint.into());
184 self
185 }
186
187 fn with_hints<S: Into<String>, I: IntoIterator<Item = S>>(mut self, hints: I) -> Self {
188 self.hints = hints.into_iter().map(|x| x.into()).collect();

Callers 15

linearize_treeFunction · 0.80
translate_query_sstringFunction · 0.80
exceptFunction · 0.80
intersectFunction · 0.80
lower_to_irFunction · 0.80
extern_ref_to_relationFunction · 0.80
lower_table_refMethod · 0.80
push_selectMethod · 0.80
lower_exprMethod · 0.80
lookup_cidMethod · 0.80
compose_type_errorFunction · 0.80
resolve_special_funcMethod · 0.80

Calls 1

pushMethod · 0.80

Tested by

no test coverage detected