[][src]Struct roux::util::option::FeedOption

pub struct FeedOption {
    pub after: Option<String>,
    pub before: Option<String>,
    pub count: Option<u32>,
}

Basic feed options

Fields

after: Option<String>

after and before indicate the fullname of an item in the listing to use as the anchor point of the slice.

before: Option<String>

Only one should be specified.

count: Option<u32>

The number of items already seen in this listing.

Implementations

impl FeedOption[src]

pub fn new() -> FeedOption[src]

Create a new FeedOption instance.

pub fn after(self, ty: &str) -> FeedOption[src]

Set after param.

pub fn before(self, ty: &str) -> FeedOption[src]

Set before param.

pub fn count(self, ty: u32) -> FeedOption[src]

Set count param.

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> 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.