add comments

This commit is contained in:
yggverse 2025-01-15 07:01:09 +02:00
parent 8d0f19403a
commit dfe3495461

View File

@ -1,6 +1,11 @@
/// Special features enumeration
/// * may not be available for some protocols
pub enum Feature {
/// Common feature for protocol selected (e.g. browser view)
Default { request: String },
/// Download request with externally selected method (e.g. to file)
Download { request: String },
/// View request as the source (like `source-view`)
Source { request: String },
}