pub struct Hint {
pub offset: u32,
pub label: String,
pub kind: HintKind,
}Expand description
One thing the compiler worked out and the source does not say.
Fields§
§offset: u32Where it belongs, as a byte offset into the document.
label: StringThe label, which is also what could be written at offset to say the same thing.
kind: HintKindTrait Implementations§
impl Eq for Hint
impl StructuralPartialEq for Hint
Auto Trait Implementations§
impl Freeze for Hint
impl RefUnwindSafe for Hint
impl Send for Hint
impl Sync for Hint
impl Unpin for Hint
impl UnwindSafe for Hint
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