Enum StaticPaths
pub enum StaticPaths {
Combined {
key_store: Box<Path>,
},
Separate {
certificate: Box<Path>,
private_key: Box<Path>,
},
}Variants§
Implementations§
§impl StaticPaths
impl StaticPaths
Trait Implementations§
§impl Clone for StaticPaths
impl Clone for StaticPaths
§fn clone(&self) -> StaticPaths
fn clone(&self) -> StaticPaths
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 more§impl<'de> Deserialize<'de> for StaticPaths
impl<'de> Deserialize<'de> for StaticPaths
§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 StaticPaths
impl RefUnwindSafe for StaticPaths
impl Send for StaticPaths
impl Sync for StaticPaths
impl Unpin for StaticPaths
impl UnwindSafe for StaticPaths
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