diff --git a/src/app/browser/window/tab/item/page/client/protocol/feature.rs b/src/app/browser/window/tab/item/page/client/protocol/feature.rs index e641139e..af0b9d2f 100644 --- a/src/app/browser/window/tab/item/page/client/protocol/feature.rs +++ b/src/app/browser/window/tab/item/page/client/protocol/feature.rs @@ -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 }, }