pub struct DynString<T: Numeric> { /* private fields */ }Implementations
Trait Implementations
sourceimpl Decode for DynString<u16>
impl Decode for DynString<u16>
fn from_le_vec(source: &mut Source) -> Result<Self, String>
sourceimpl Decode for DynString<u32>
impl Decode for DynString<u32>
fn from_le_vec(source: &mut Source) -> Result<Self, String>
sourceimpl<'de, T: Numeric> Deserialize<'de> for DynString<T> where
T: Deserialize<'de>,
impl<'de, T: Numeric> Deserialize<'de> for DynString<T> where
T: Deserialize<'de>,
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for DynString<T> where
T: RefUnwindSafe,
impl<T> Send for DynString<T> where
T: Send,
impl<T> Sync for DynString<T> where
T: Sync,
impl<T> Unpin for DynString<T> where
T: Unpin,
impl<T> UnwindSafe for DynString<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more