pub struct SemanticPaintedRegion {
pub region_bounds: Rect,
pub spans: Vec<ProviderPointerSpan>,
}Expand description
Exact painted cells attached to a semantic node observation.
Fields§
§region_bounds: RectBounding rectangle of all attributed spans.
spans: Vec<ProviderPointerSpan>Exact possibly disjoint cells as canonical row spans.
Trait Implementations§
Source§impl Clone for SemanticPaintedRegion
impl Clone for SemanticPaintedRegion
Source§fn clone(&self) -> SemanticPaintedRegion
fn clone(&self) -> SemanticPaintedRegion
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 SemanticPaintedRegion
impl Debug for SemanticPaintedRegion
Source§impl<'de> Deserialize<'de> for SemanticPaintedRegion
impl<'de> Deserialize<'de> for SemanticPaintedRegion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SemanticPaintedRegion
Source§impl PartialEq for SemanticPaintedRegion
impl PartialEq for SemanticPaintedRegion
Source§impl Serialize for SemanticPaintedRegion
impl Serialize for SemanticPaintedRegion
impl StructuralPartialEq for SemanticPaintedRegion
Auto Trait Implementations§
impl Freeze for SemanticPaintedRegion
impl RefUnwindSafe for SemanticPaintedRegion
impl Send for SemanticPaintedRegion
impl Sync for SemanticPaintedRegion
impl Unpin for SemanticPaintedRegion
impl UnsafeUnpin for SemanticPaintedRegion
impl UnwindSafe for SemanticPaintedRegion
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