[go: up one dir, main page]

AsSymbolName

Trait AsSymbolName 

Source
pub trait AsSymbolName: Sealed { }
Expand description

This trait is implemented for types Library implementations can use to look up symbols.

It is currently sealed and cannot be implemented or its methods called by users of this crate.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AsSymbolName for &str

Source§

impl AsSymbolName for &CString

Source§

impl AsSymbolName for &String

Source§

impl AsSymbolName for &CStr

Source§

impl AsSymbolName for &[u8]

Source§

impl AsSymbolName for CString

Source§

impl AsSymbolName for String

Source§

impl<const N: usize> AsSymbolName for &[u8; N]

Source§

impl<const N: usize> AsSymbolName for [u8; N]

Implementors§