#[repr(C)]pub struct UnicodeString<P: Pod> {
pub length: u16,
pub maximum_length: u16,
pub buffer: P,
}Fields§
§length: u16§maximum_length: u16§buffer: PTrait Implementations§
Source§impl<P: Default + Pod> Default for UnicodeString<P>
impl<P: Default + Pod> Default for UnicodeString<P>
Source§fn default() -> UnicodeString<P>
fn default() -> UnicodeString<P>
Returns the “default value” for a type. Read more
impl<P: Pod> Pod for UnicodeString<P>
Auto Trait Implementations§
impl<P> Freeze for UnicodeString<P>where
P: Freeze,
impl<P> RefUnwindSafe for UnicodeString<P>where
P: RefUnwindSafe,
impl<P> Send for UnicodeString<P>where
P: Send,
impl<P> Sync for UnicodeString<P>where
P: Sync,
impl<P> Unpin for UnicodeString<P>where
P: Unpin,
impl<P> UnwindSafe for UnicodeString<P>where
P: UnwindSafe,
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