Struct chromiumoxide::cdp::browser_protocol::css::SourceRange[][src]

pub struct SourceRange {
    pub start_line: i64,
    pub start_column: i64,
    pub end_line: i64,
    pub end_column: i64,
}

Text range within a resource. All numbers are zero-based. SourceRange

Fields

start_line: i64

Start line of range.

start_column: i64

Start column of range (inclusive).

end_line: i64

End line of range

end_column: i64

End column of range (exclusive).

Implementations

impl SourceRange[src]

pub fn new(
    start_line: impl Into<i64>,
    start_column: impl Into<i64>,
    end_line: impl Into<i64>,
    end_column: impl Into<i64>
) -> SourceRange
[src]

impl SourceRange[src]

impl SourceRange[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for SourceRange[src]

impl Debug for SourceRange[src]

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

impl PartialEq<SourceRange> for SourceRange[src]

impl Serialize for SourceRange[src]

impl StructuralPartialEq for SourceRange[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,