pub struct StringId<'t> {
pub substrings: Option<IdIndex>,
pub name: RawString<'t>,
}Expand description
A string.
This Id is usually referenced by FunctionId and contains the full namespace of a function.
Fields§
§substrings: Option<IdIndex>Index of the list of substrings.
name: RawString<'t>The string.
Trait Implementations§
impl<'t> Eq for StringId<'t>
impl<'t> StructuralPartialEq for StringId<'t>
Auto Trait Implementations§
impl<'t> Freeze for StringId<'t>
impl<'t> RefUnwindSafe for StringId<'t>
impl<'t> Send for StringId<'t>
impl<'t> Sync for StringId<'t>
impl<'t> Unpin for StringId<'t>
impl<'t> UnwindSafe for StringId<'t>
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