Struct ibdl_common::post::PostQueue
source · 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: ImageBoardsThe imageboard where the posts come from.
client: ClientThe internal Client used by the extractor.
posts: Vec<Post>A list containing all Posts collected.
The tags used to search the collected posts.
Implementations
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for PostQueue
impl Send for PostQueue
impl Sync for PostQueue
impl Unpin for PostQueue
impl !UnwindSafe for PostQueue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more