Trait vector_stream::DriverResponse

source ·
pub trait DriverResponse {
    // Required methods
    fn event_status(&self) -> EventStatus;
    fn events_sent(&self) -> &GroupedCountByteSize;

    // Provided method
    fn bytes_sent(&self) -> Option<usize> { ... }
}

Required Methods§

source

fn event_status(&self) -> EventStatus

source

fn events_sent(&self) -> &GroupedCountByteSize

Provided Methods§

source

fn bytes_sent(&self) -> Option<usize>

Return the number of bytes that were sent in the request that returned this response.

Implementors§