Lines Matching defs:String
34 pub(crate) fn header(&mut self, msg: impl Into<String>) { in header()
38 pub(crate) fn literal(&mut self, msg: impl Into<String>) { in literal()
42 pub(crate) fn placeholder(&mut self, msg: impl Into<String>) { in placeholder()
47 pub(crate) fn good(&mut self, msg: impl Into<String>) { in good()
52 pub(crate) fn warning(&mut self, msg: impl Into<String>) { in warning()
56 pub(crate) fn error(&mut self, msg: impl Into<String>) { in error()
61 pub(crate) fn hint(&mut self, msg: impl Into<String>) { in hint()
65 pub(crate) fn none(&mut self, msg: impl Into<String>) { in none()
69 pub(crate) fn stylize(&mut self, style: impl Into<Option<Style>>, msg: impl Into<String>) { in stylize()
133 fn stylize_(&mut self, style: Option<Style>, msg: String) { in stylize_()
140 fn stylize_(&mut self, _style: Option<Style>, msg: String) { in stylize_()
170 pub(crate) fn iter_mut(&mut self) -> impl Iterator<Item = (Option<Style>, &mut String)> { in iter_mut()
175 pub(crate) fn iter_mut(&mut self) -> impl Iterator<Item = (Option<Style>, &mut String)> { in iter_mut()
180 pub(crate) fn into_iter(self) -> impl Iterator<Item = (Option<Style>, String)> { in into_iter() argument
185 pub(crate) fn into_iter(self) -> impl Iterator<Item = (Option<Style>, String)> { in into_iter() argument
191 other: impl IntoIterator<Item = (impl Into<Option<Style>>, impl Into<String>)>, in extend()