pub struct TypeLengthPair {
pub type_index: i64,
pub length: u64,
}Expand description
Pair used by attributed-body ranges: attribute dictionary index plus UTF-16 range length.
Fields§
§type_index: i64Index of the attribute dictionary referenced by this range.
length: u64Length of the range in UTF-16 code units.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypeLengthPair
impl RefUnwindSafe for TypeLengthPair
impl Send for TypeLengthPair
impl Sync for TypeLengthPair
impl Unpin for TypeLengthPair
impl UnsafeUnpin for TypeLengthPair
impl UnwindSafe for TypeLengthPair
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