Skip to main content

RenderedRegion

Struct RenderedRegion 

Source
pub struct RenderedRegion {
    pub field: String,
    pub page: usize,
    pub rect: [f32; 4],
    pub span: Option<[usize; 2]>,
}
Expand description

One schema field placement’s extent on a rendered page.

rect is [x0, y0, x1, y1] in PDF points with a bottom-left origin — the same final geometry the stamp spine writes to the widget /Rect, so the region and the rendered field describe the identical box.

field is not unique within the Vec that LiveSession::regions returns: a content field breaks into one entry per segment (paragraph, heading, whole code fence) and per page each segment touches, a scalar referenced at several plate sites yields one per site, and tracked content plus a bound widget yields both. Consumers group by field; every entry routes to that field. The whole-field box is derived — the union of a page’s span-bearing segment rects, so inter-paragraph whitespace stays uncovered (#829); the field_boxes helper (and LiveSession::field_boxes) owns that union so consumers need not reimplement it.

Fields§

§field: String

Quill schema field path, e.g. "signature_block" or "$cards.indorsement.1.from" — the author-facing field address (the card form is kind + 0-based ordinal, $cards.<kind>.<n>.<field>), not any backend widget name.

§page: usize

0-based page index.

§rect: [f32; 4]

[x0, y0, x1, y1], PDF points, bottom-left origin.

§span: Option<[usize; 2]>

The content slice this box covers: USV [start, end) into the field’s Content for content ink (one segment’s range), None for a scalar reference site or a widget — geometry with no content address. Additive and optional: omitted from the wire when None.

Implementations§

Source§

impl RenderedRegion

Source

pub fn contains(&self, page: usize, x: f32, y: f32) -> bool

Whether the point (x, y, PDF points, bottom-left origin) on page falls inside this region, edges inclusive. The one point-in-region predicate every field_at hit-test shares, so a click at a region border resolves identically everywhere.

Trait Implementations§

Source§

impl Clone for RenderedRegion

Source§

fn clone(&self) -> RenderedRegion

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RenderedRegion

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for RenderedRegion

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for RenderedRegion

Source§

fn eq(&self, other: &RenderedRegion) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for RenderedRegion

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for RenderedRegion

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.