pub struct CoreFmtFormatStringParser;Expand description
An implementation of FormatStringParser that parsers core::fmt style format strings.
Trait Implementations§
Source§impl Debug for CoreFmtFormatStringParser
impl Debug for CoreFmtFormatStringParser
Source§impl FormatStringParser for CoreFmtFormatStringParser
impl FormatStringParser for CoreFmtFormatStringParser
Source§fn parse_format_string(format_string: &str) -> Result<FormatString, String>
fn parse_format_string(format_string: &str) -> Result<FormatString, String>
Parse
format_string and return the results as a [FormatString].Auto Trait Implementations§
impl Freeze for CoreFmtFormatStringParser
impl RefUnwindSafe for CoreFmtFormatStringParser
impl Send for CoreFmtFormatStringParser
impl Sync for CoreFmtFormatStringParser
impl Unpin for CoreFmtFormatStringParser
impl UnsafeUnpin for CoreFmtFormatStringParser
impl UnwindSafe for CoreFmtFormatStringParser
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more