Trait RawMarker

Source
pub trait RawMarker { }
Expand description

Types implementing this marker don’t need to be escaped.

Implementations on Foreign Types§

Source§

impl RawMarker for bool

Source§

impl RawMarker for f32

Source§

impl RawMarker for f64

Source§

impl RawMarker for i8

Source§

impl RawMarker for i16

Source§

impl RawMarker for i32

Source§

impl RawMarker for i64

Source§

impl RawMarker for i128

Source§

impl RawMarker for isize

Source§

impl RawMarker for u8

Source§

impl RawMarker for u16

Source§

impl RawMarker for u32

Source§

impl RawMarker for u64

Source§

impl RawMarker for u128

Source§

impl RawMarker for usize

Source§

impl RawMarker for NonZeroI8

Source§

impl RawMarker for NonZeroI16

Source§

impl RawMarker for NonZeroI32

Source§

impl RawMarker for NonZeroI64

Source§

impl RawMarker for NonZeroI128

Source§

impl RawMarker for NonZeroIsize

Source§

impl RawMarker for NonZeroU8

Source§

impl RawMarker for NonZeroU16

Source§

impl RawMarker for NonZeroU32

Source§

impl RawMarker for NonZeroU64

Source§

impl RawMarker for NonZeroU128

Source§

impl RawMarker for NonZeroUsize

Source§

impl<T: RawMarker + ToOwned> RawMarker for Cow<'_, T>

Available on crate features std or alloc only.
Source§

impl<T: RawMarker> RawMarker for &T

Source§

impl<T: RawMarker> RawMarker for &mut T

Source§

impl<T: RawMarker> RawMarker for Box<T>

Available on crate features std or alloc only.
Source§

impl<T: RawMarker> RawMarker for Rc<T>

Available on crate features std or alloc only.
Source§

impl<T: RawMarker> RawMarker for Arc<T>

Available on crate features std or alloc only.
Source§

impl<T: RawMarker> RawMarker for Ref<'_, T>

Source§

impl<T: RawMarker> RawMarker for RefMut<'_, T>

Source§

impl<T: RawMarker> RawMarker for Wrapping<T>

Source§

impl<T: RawMarker> RawMarker for Pin<T>

Source§

impl<T: RawMarker> RawMarker for MutexGuard<'_, T>

Available on crate feature std only.
Source§

impl<T: RawMarker> RawMarker for RwLockReadGuard<'_, T>

Available on crate feature std only.
Source§

impl<T: RawMarker> RawMarker for RwLockWriteGuard<'_, T>

Available on crate feature std only.

Implementors§