pub struct PostQueue {
pub imageboard: ImageBoards,
pub client: Client,
pub posts: Vec<Post>,
pub tags: Vec<String>,
}
Expand description
Queue that combines all posts collected, with which tags and with a user-defined blacklist in case an Extractor implements Auth.
Fields§
§imageboard: ImageBoards
The imageboard where the posts come from.
client: Client
The internal Client
used by the extractor.
posts: Vec<Post>
A list containing all Post
s collected.
The tags used to search the collected posts.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PostQueue
impl !RefUnwindSafe for PostQueue
impl Send for PostQueue
impl Sync for PostQueue
impl Unpin for PostQueue
impl !UnwindSafe for PostQueue
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