pub trait FusedMultipartWrite<Part>: MultipartWrite<Part> {
// Required method
fn is_terminated(&self) -> bool;
}Expand description
A writer that tracks whether or not the underlying writer should no longer be polled.
Required Methods§
Sourcefn is_terminated(&self) -> bool
fn is_terminated(&self) -> bool
Returns true if the writer should no longer be polled.