remove unsupported modes, add comments

This commit is contained in:
yggverse 2025-03-24 07:06:54 +02:00
parent 7c518cecf6
commit 0717e473b7
2 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,6 @@
/// 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
Header,
All,
}