pub struct InternedStringId(/* private fields */);Expand description
An identifier for an interned UTF-8 string.
This is returned by Context::intern_utf8_str, and can be used for both reading and writing.
Trait Implementations§
Source§impl Clone for InternedStringId
impl Clone for InternedStringId
Source§fn clone(&self) -> InternedStringId
fn clone(&self) -> InternedStringId
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InternedStringId
impl Debug for InternedStringId
Source§impl PartialEq for InternedStringId
impl PartialEq for InternedStringId
impl Copy for InternedStringId
impl StructuralPartialEq for InternedStringId
Auto Trait Implementations§
impl Freeze for InternedStringId
impl RefUnwindSafe for InternedStringId
impl Send for InternedStringId
impl Sync for InternedStringId
impl Unpin for InternedStringId
impl UnwindSafe for InternedStringId
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