pub struct HighlightSpan {
pub start: usize,
pub end: usize,
pub semantic: Semantic,
}Expand description
A colored text span — byte range + canonical Semantic bucket.
Fields§
§start: usize§end: usize§semantic: SemanticTrait Implementations§
Source§impl Clone for HighlightSpan
impl Clone for HighlightSpan
Source§fn clone(&self) -> HighlightSpan
fn clone(&self) -> HighlightSpan
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 moreSource§impl Debug for HighlightSpan
impl Debug for HighlightSpan
Source§impl<'de> Deserialize<'de> for HighlightSpan
impl<'de> Deserialize<'de> for HighlightSpan
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<HighlightSpan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<HighlightSpan, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HighlightSpan
Source§impl PartialEq for HighlightSpan
impl PartialEq for HighlightSpan
Source§impl Serialize for HighlightSpan
impl Serialize for HighlightSpan
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for HighlightSpan
Auto Trait Implementations§
impl Freeze for HighlightSpan
impl RefUnwindSafe for HighlightSpan
impl Send for HighlightSpan
impl Sync for HighlightSpan
impl Unpin for HighlightSpan
impl UnsafeUnpin for HighlightSpan
impl UnwindSafe for HighlightSpan
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