Type Alias net::fetch::methods::DoneChannel
source · pub type DoneChannel = Option<(UnboundedSender<Data>, UnboundedReceiver<Data>)>;
Aliased Type§
enum DoneChannel {
None,
Some((UnboundedSender<Data>, UnboundedReceiver<Data>)),
}
Variants§
None
No value.
Some((UnboundedSender<Data>, UnboundedReceiver<Data>))
Some value of type T
.