Struct chrome_remote_interface_model::dom_snapshot::InlineTextBox[][src]

pub struct InlineTextBox { /* fields omitted */ }
This is supported on crate features experimental and DOMSnapshot and CSS and DOM and DOMDebugger and Page only.

Details of post layout rendered text positions. The exact layout should not be regarded as stable and may change between versions.

Implementations

impl InlineTextBox[src]

pub fn new(
    bounding_box: Rect,
    start_character_index: u32,
    num_characters: u32
) -> Self
[src]

pub fn bounding_box(&self) -> &Rect[src]

The bounding box in document coordinates. Note that scroll offset of the document is ignored.

pub fn start_character_index(&self) -> u32[src]

The starting index in characters, for this post layout textbox substring. Characters that would be represented as a surrogate pair in UTF-16 have length 2.

pub fn num_characters(&self) -> u32[src]

The number of characters in this post layout textbox substring. Characters that would be represented as a surrogate pair in UTF-16 have length 2.

Trait Implementations

impl Clone for InlineTextBox[src]

impl Debug for InlineTextBox[src]

impl<'de> Deserialize<'de> for InlineTextBox[src]

impl Serialize for InlineTextBox[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.