pub trait StreamControl {
// Required method
fn attributes(&self) -> &Attributes;
// Provided methods
fn resume_downstream(&self) { ... }
fn close_downstream(&self) { ... }
fn resume_upstream(&self) { ... }
fn close_upstream(&self) { ... }
}
Expand description
Defines control functions for streams
Required Methods§
Sourcefn attributes(&self) -> &Attributes
fn attributes(&self) -> &Attributes
Retrieve attributes for the stream data
Provided Methods§
Sourcefn resume_downstream(&self)
fn resume_downstream(&self)
TODO: UNKNOWN PURPOSE
Sourcefn close_downstream(&self)
fn close_downstream(&self)
TODO: UNKNOWN PURPOSE
Sourcefn resume_upstream(&self)
fn resume_upstream(&self)
TODO: UNKNOWN PURPOSE
Sourcefn close_upstream(&self)
fn close_upstream(&self)
TODO: UNKNOWN PURPOSE