[−][src]Struct wallabag_api::types::Annotation
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: IDThe unique integral id of the annotation.
annotator_schema_version: StringA 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: StringThe 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 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.
fn from(ann: Annotation) -> Self[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.
fn from(ann: &Annotation) -> Self[src]
impl Debug for Annotation[src]
impl Serialize for Annotation[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for Annotation[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for Annotation
impl Sync for Annotation
impl Unpin for Annotation
impl UnwindSafe for Annotation
impl RefUnwindSafe for Annotation
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
U: TryFrom<T>,