mirror of
https://github.com/YGGverse/ggemini.git
synced 2026-03-31 17:15:31 +00:00
6 lines
214 B
Rust
6 lines
214 B
Rust
/// Request modes
|
|
pub enum Mode {
|
|
/// Request header bytes only, process content bytes manually
|
|
/// * useful for manual content type handle: text, stream or large content loaded by chunks
|
|
HeaderOnly,
|
|
}
|