pub struct StringTableEntry {
pub string: Option<String>,
pub user_data: Option<Vec<u8>>,
}Expand description
A single entry in a string table.
Fields§
§string: Option<String>§user_data: Option<Vec<u8>>Trait Implementations§
Source§impl Clone for StringTableEntry
impl Clone for StringTableEntry
Source§fn clone(&self) -> StringTableEntry
fn clone(&self) -> StringTableEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for StringTableEntry
impl RefUnwindSafe for StringTableEntry
impl Send for StringTableEntry
impl Sync for StringTableEntry
impl Unpin for StringTableEntry
impl UnsafeUnpin for StringTableEntry
impl UnwindSafe for StringTableEntry
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