[][src]Struct wallabag_api::types::Annotation

pub struct Annotation {
    pub id: ID,
    pub annotator_schema_version: String,
    pub created_at: DateTime<Utc>,
    pub quote: Option<String>,
    pub ranges: Vec<Range>,
    pub text: String,
    pub updated_at: DateTime<Utc>,
    pub user: Option<String>,
}

Represents an annotation as returned from the API.

Annotations are in Annotatorjs format. https://annotatorjs.org/ See http://docs.annotatorjs.org/en/v1.2.x/annotation-format.html for documentation on the format.

Fields

id: ID

The unique integral id of the annotation.

annotator_schema_version: String

A schema version to presumably support updates in the future. Currently all annotations appear to be v1.0. Hopefully this isn't going to get breaking changes any time soon.

created_at: DateTime<Utc>

When the annotation was created on the server.

quote: Option<String>

The quoted (or highlighted) text from the entry.

ranges: Vec<Range>

A list of ranges from the entry that the annotation covers. Most annotations cover a single range.

text: String

The content of the annotation - any text the user added to annotate the entry.

updated_at: DateTime<Utc>

Timestamp of when the annotation was last updated. This is independent of the associated entry.

user: Option<String>

Possibly part of wallabag planning on supporting sharing between users. Currently this field is always None.

Trait Implementations

impl Debug for Annotation[src]

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

impl<'_> From<&'_ Annotation> for ID[src]

This is implemented so that an &Annotation can be used interchangeably with an ID for some client methods. For convenience.

impl From<Annotation> for ID[src]

This is implemented so that an Annotation can be used interchangeably with an ID for some client methods. For convenience.

impl Serialize for Annotation[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: 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.