Struct earth::feed::Mark [] [src]

pub struct Mark {
    pub marked: bool,
    pub updated_at: Option<DateTime<FixedOffset>>,
}

Represent whether the entry is read, starred, or tagged by user.

It's not a part of RFC 4287 Atom standard, but extension for Earth Reader.

Fields

Whether it's marked or not.

Updated time.

Trait Implementations

impl Clone for Mark
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Mark
[src]

Returns the "default value" for a type. Read more

impl PartialEq for Mark
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Mark
[src]

impl Hash for Mark
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Mark
[src]

Formats the value using the given formatter.

impl Entity for Mark
[src]

If there are two or more marks that have the same tag name, these are all should be merged into one.

impl Mergeable for Mark
[src]

Merge data with the given value to renew itself as a latest state. Read more

impl FromSchemaReader for Mark
[src]