tauri_utils::config

Trait HeaderAddition

Source
pub trait HeaderAddition {
    // Required method
    fn add_configured_headers(self, headers: Option<&HeaderConfig>) -> Builder;
}
Expand description

A trait which implements on the Builder of the http create

Must add headers defined in the tauri configuration file to http responses

Required Methods§

Source

fn add_configured_headers(self, headers: Option<&HeaderConfig>) -> Builder

adds all headers defined on the config file, given the current HeaderConfig

Implementations on Foreign Types§

Source§

impl HeaderAddition for Builder

Source§

fn add_configured_headers(self, headers: Option<&HeaderConfig>) -> Builder

Add the headers defined in the tauri configuration file to http responses

this is a utility function, which is used in the same way as the .header(..) of the rust http library

Implementors§