miniblink 0.4.0

Rust bindings to mininlink49
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::types::{WebFrameHandle, DownloadJob};

/// The download parameters.
pub struct DownloadParameters {
    /// The frame handler.
    pub frame_id: WebFrameHandle,
    /// The url.
    pub url: String,
    /// The download job.
    pub download_job: DownloadJob,
}