Struct chromiumoxide::cdp::browser_protocol::page::EventDownloadProgress[][src]

pub struct EventDownloadProgress {
    pub guid: String,
    pub total_bytes: f64,
    pub received_bytes: f64,
    pub state: DownloadProgressState,
}

Fired when download makes progress. Last call has |done| == true. downloadProgress

Fields

guid: String

Global unique identifier of the download.

total_bytes: f64

Total expected bytes to download.

received_bytes: f64

Total bytes received.

state: DownloadProgressState

Download status.

Implementations

impl EventDownloadProgress[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for EventDownloadProgress[src]

impl Debug for EventDownloadProgress[src]

impl<'de> Deserialize<'de> for EventDownloadProgress[src]

impl Into<CdpEvent> for EventDownloadProgress[src]

impl IntoEventKind for EventDownloadProgress[src]

impl Method for EventDownloadProgress[src]

impl MethodType for EventDownloadProgress[src]

impl PartialEq<EventDownloadProgress> for EventDownloadProgress[src]

impl Serialize for EventDownloadProgress[src]

impl StructuralPartialEq for EventDownloadProgress[src]

impl TryFrom<CdpEvent> for EventDownloadProgress[src]

type Error = CdpEvent

The type returned in the event of a conversion error.

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Event for T where
    T: SealedEvent, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,