pub fn wrap_with_indent(text: &str, width: usize, indent: usize) -> StringExpand description
Wrap text with indentation applied to continuation lines.
The first line wraps at width. Subsequent lines are prefixed with
indent characters of whitespace and wrap at width - indent to
stay within the total width.
Returns the original text unchanged if width is 0.