[][src]Struct wallabag_api::types::Range

pub struct Range {
    pub start: Option<String>,
    pub end: Option<String>,
    pub start_offset: u32,
    pub end_offset: u32,
}

Range as used in an Annotation. Shows where the annotation is in the content. Part of Annotationjs annotation format. I quote from their docs for the field descriptions.

Fields

start: Option<String>

(relative) XPath to start element.

end: Option<String>

(relative) XPath to end element.

start_offset: u32

Character offset within start element. Note: these offset values have been observed as literal strings and integers. Grrr loosely typed languages with coercion...

end_offset: u32

Character offset within end element.

Trait Implementations

impl Debug for Range[src]

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

impl Serialize for Range[src]

Auto Trait Implementations

impl RefUnwindSafe for Range

impl Send for Range

impl Sync for Range

impl Unpin for Range

impl UnwindSafe for Range

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: Deserialize<'de>, 
[src]

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

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

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.