1Formats the value using the given formatter.
2
3▶# Errors
4
5This function should return [`Err`] if, and only if, the provided [`Formatter`] returns [`Err`].
· · ·
6String formatting is considered an infallible operation; this function only
7returns a [`Result`] because writing to the underlying stream might fail and it must
8▶provide a way to propagate the fact that an error has occurred back up the stack.
9