Lines Matching full:note
48 /// Attach a "help" note to your main message, the note will have it's own span on nightly.
55 … /// The span is ignored on stable, the note effectively inherits its parent's (main message) span
58 /// Attach a note to your main message, the note will have it's own span on nightly.
65 … /// The span is ignored on stable, the note effectively inherits its parent's (main message) span
93 .push((SuggestionKind::Note, msg, Some(span_range))); in span_range_note()
128 /// Attach a "help" note to your main message, the note will have it's own span on nightly.
132 … /// The span is ignored on stable, the note effectively inherits its parent's (main message) span
143 /// Attach a "help" note to your main message.
149 /// Attach a note to your main message, the note will have it's own span on nightly.
153 … /// The span is ignored on stable, the note effectively inherits its parent's (main message) span
164 /// Attach a note to your main message
165 pub fn note(mut self, msg: String) -> Self { in note() method
166 self.suggestions.push((SuggestionKind::Note, msg, None)); in note()
209 _ => self.note(msg), in suggestion()
244 for (kind, note, _span) in suggestions { in to_tokens()
248 ensure_lf(&mut message, note); in to_tokens()
278 Note, enumerator
284 SuggestionKind::Note => "note", in name()