Enum rawr::options::ListingAnchor [] [src]

pub enum ListingAnchor {
    After(String),
    Before(String),
    None,
}

Used to 'anchor' the pagination so you can get all posts before/after a post.

Variants

After

Gets all items after the specified one, e.g. gets posts older than the specified post in the new queue.

Before

Gets all items before the specified one, e.g. gets posts higher than the specified one in the top queue.

None

Use no anchor.

Trait Implementations

impl Display for ListingAnchor
[src]

fn fmt(&self, f: &mut Formatter) -> FmtResult

Formats the value using the given formatter.