pub enum DiscoveryStoreConfig {
Database {
database_url: String,
max_connections: u32,
},
Memory,
Http {
base_url: String,
connect_timeout_secs: f64,
total_timeout_secs: f64,
trusted_roots: Option<PathBuf>,
authorization: PathBuf,
},
}Variants§
Trait Implementations§
Source§impl Clone for DiscoveryStoreConfig
impl Clone for DiscoveryStoreConfig
Source§fn clone(&self) -> DiscoveryStoreConfig
fn clone(&self) -> DiscoveryStoreConfig
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 DiscoveryStoreConfig
impl Debug for DiscoveryStoreConfig
Source§impl<'de> Deserialize<'de> for DiscoveryStoreConfig
impl<'de> Deserialize<'de> for DiscoveryStoreConfig
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 DiscoveryStoreConfig
impl RefUnwindSafe for DiscoveryStoreConfig
impl Send for DiscoveryStoreConfig
impl Sync for DiscoveryStoreConfig
impl Unpin for DiscoveryStoreConfig
impl UnwindSafe for DiscoveryStoreConfig
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