pub struct UnsafeArg {
_private: (),
}
🔬This is a nightly-only experimental API. (
fmt_internals
)Expand description
This struct represents the unsafety of constructing an Arguments
.
It exists, rather than an unsafe function, in order to simplify the expansion
of format_args!(..)
and reduce the scope of the unsafe
block.
Fields§
§_private: ()
🔬This is a nightly-only experimental API. (
fmt_internals
)Implementations§
Auto Trait Implementations§
impl Freeze for UnsafeArg
impl RefUnwindSafe for UnsafeArg
impl Send for UnsafeArg
impl Sync for UnsafeArg
impl Unpin for UnsafeArg
impl UnwindSafe for UnsafeArg
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