pub struct ConfigSection {
pub http_ca: Option<PathBuf>,
pub http_key: Option<PathBuf>,
pub http_inject_ca: Vec<PathBuf>,
pub http_ca_out: Option<PathBuf>,
pub fs_storage: Option<PathBuf>,
pub workdir: Option<PathBuf>,
}Fields§
§http_ca: Option<PathBuf>§http_key: Option<PathBuf>§http_inject_ca: Vec<PathBuf>§http_ca_out: Option<PathBuf>§fs_storage: Option<PathBuf>§workdir: Option<PathBuf>Trait Implementations§
Source§impl Clone for ConfigSection
impl Clone for ConfigSection
Source§fn clone(&self) -> ConfigSection
fn clone(&self) -> ConfigSection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConfigSection
impl Debug for ConfigSection
Source§impl Default for ConfigSection
impl Default for ConfigSection
Source§fn default() -> ConfigSection
fn default() -> ConfigSection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConfigSectionwhere
ConfigSection: Default,
impl<'de> Deserialize<'de> for ConfigSectionwhere
ConfigSection: Default,
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
Source§impl PartialEq for ConfigSection
impl PartialEq for ConfigSection
Source§fn eq(&self, other: &ConfigSection) -> bool
fn eq(&self, other: &ConfigSection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConfigSection
Auto Trait Implementations§
impl Freeze for ConfigSection
impl RefUnwindSafe for ConfigSection
impl Send for ConfigSection
impl Sync for ConfigSection
impl Unpin for ConfigSection
impl UnsafeUnpin for ConfigSection
impl UnwindSafe for ConfigSection
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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