pub enum ThreadPage {
First,
Last,
New,
Page(usize),
}Expand description
References a page of posts within a thread.
Variants§
First
The first page of the thread.
Last
The last page of the thread.
New
The first unseen page of the thread.
Page(usize)
A specific page of the thread. This should be between 1 and the maximum page inclusive.
Auto Trait Implementations§
impl Freeze for ThreadPage
impl RefUnwindSafe for ThreadPage
impl Send for ThreadPage
impl Sync for ThreadPage
impl Unpin for ThreadPage
impl UnwindSafe for ThreadPage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more