pub struct ProviderPaintedRegion {
pub recipient_id: String,
pub region_bounds: Rect,
pub spans: Vec<ProviderPointerSpan>,
}Expand description
Exact viewport cells painted by an application’s production painter.
Fields§
§recipient_id: StringSemantic node whose production painter produced these cells.
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 ProviderPaintedRegion
impl Clone for ProviderPaintedRegion
Source§fn clone(&self) -> ProviderPaintedRegion
fn clone(&self) -> ProviderPaintedRegion
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 ProviderPaintedRegion
impl Debug for ProviderPaintedRegion
Source§impl<'de> Deserialize<'de> for ProviderPaintedRegion
impl<'de> Deserialize<'de> for ProviderPaintedRegion
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 ProviderPaintedRegion
Source§impl PartialEq for ProviderPaintedRegion
impl PartialEq for ProviderPaintedRegion
Source§impl Serialize for ProviderPaintedRegion
impl Serialize for ProviderPaintedRegion
impl StructuralPartialEq for ProviderPaintedRegion
Auto Trait Implementations§
impl Freeze for ProviderPaintedRegion
impl RefUnwindSafe for ProviderPaintedRegion
impl Send for ProviderPaintedRegion
impl Sync for ProviderPaintedRegion
impl Unpin for ProviderPaintedRegion
impl UnsafeUnpin for ProviderPaintedRegion
impl UnwindSafe for ProviderPaintedRegion
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