Struct core::panic::PanicMessage
1.81.0 · source · pub struct PanicMessage<'a> { /* private fields */ }
Expand description
A message that was given to the panic!()
macro.
The Display
implementation of this type will format the message with the arguments
that were given to the panic!()
macro.
See PanicInfo::message
.
Implementations§
source§impl<'a> PanicMessage<'a>
impl<'a> PanicMessage<'a>
1.81.0 (const: unstable) · sourcepub fn as_str(&self) -> Option<&'static str>
pub fn as_str(&self) -> Option<&'static str>
Gets the formatted message, if it has no arguments to be formatted at runtime.
This can be used to avoid allocations in some cases.
§Guarantees
For panic!("just a literal")
, this function is guaranteed to
return Some("just a literal")
.
For most cases with placeholders, this function will return None
.
See fmt::Arguments::as_str
for details.
Trait Implementations§
1.81.0 · source§impl Debug for PanicMessage<'_>
impl Debug for PanicMessage<'_>
Auto Trait Implementations§
impl<'a> Freeze for PanicMessage<'a>
impl<'a> RefUnwindSafe for PanicMessage<'a>
impl<'a> !Send for PanicMessage<'a>
impl<'a> !Sync for PanicMessage<'a>
impl<'a> Unpin for PanicMessage<'a>
impl<'a> UnwindSafe for PanicMessage<'a>
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