pub struct RepositoryConfig {
pub use_mocks: bool,
pub http_provider: Option<Arc<dyn HttpProviderSafe>>,
}
Expand description
Repository configuration
Fields§
§use_mocks: bool
Use mock repositories for testing
http_provider: Option<Arc<dyn HttpProviderSafe>>
HTTP provider for real repositories
Implementations§
Source§impl RepositoryConfig
impl RepositoryConfig
Sourcepub fn production(http_provider: Arc<dyn HttpProviderSafe>) -> Self
pub fn production(http_provider: Arc<dyn HttpProviderSafe>) -> Self
Create config for production use
Trait Implementations§
Source§impl Clone for RepositoryConfig
impl Clone for RepositoryConfig
Source§fn clone(&self) -> RepositoryConfig
fn clone(&self) -> RepositoryConfig
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 RepositoryConfig
impl Debug for RepositoryConfig
Source§impl Default for RepositoryConfig
impl Default for RepositoryConfig
Source§fn default() -> RepositoryConfig
fn default() -> RepositoryConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RepositoryConfig
impl !RefUnwindSafe for RepositoryConfig
impl Send for RepositoryConfig
impl Sync for RepositoryConfig
impl Unpin for RepositoryConfig
impl !UnwindSafe for RepositoryConfig
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