pub struct FolderInheritanceConfig {
pub headers: HashMap<String, String>,
pub auth: Option<AuthConfig>,
}
Expand description
Configuration for request inheritance at folder level
Fields§
§headers: HashMap<String, String>
Headers to be inherited by child requests (if not overridden)
auth: Option<AuthConfig>
Authentication configuration for inheritance
Trait Implementations§
Source§impl Clone for FolderInheritanceConfig
impl Clone for FolderInheritanceConfig
Source§fn clone(&self) -> FolderInheritanceConfig
fn clone(&self) -> FolderInheritanceConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FolderInheritanceConfig
impl Debug for FolderInheritanceConfig
Source§impl Default for FolderInheritanceConfig
impl Default for FolderInheritanceConfig
Source§fn default() -> FolderInheritanceConfig
fn default() -> FolderInheritanceConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FolderInheritanceConfig
impl<'de> Deserialize<'de> for FolderInheritanceConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FolderInheritanceConfig
impl RefUnwindSafe for FolderInheritanceConfig
impl Send for FolderInheritanceConfig
impl Sync for FolderInheritanceConfig
impl Unpin for FolderInheritanceConfig
impl UnwindSafe for FolderInheritanceConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more