pub struct RedisServerStartupSettings {
pub path_redis_server_executable: PathBuf,
pub path_redis_server_configuration_file: PathBuf,
pub startup_timeout: Duration,
pub maximum_startup_retries: u8,
}Fields§
§path_redis_server_executable: PathBuf§path_redis_server_configuration_file: PathBuf§startup_timeout: Duration§maximum_startup_retries: u8Trait Implementations§
Source§impl Clone for RedisServerStartupSettings
impl Clone for RedisServerStartupSettings
Source§fn clone(&self) -> RedisServerStartupSettings
fn clone(&self) -> RedisServerStartupSettings
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 RedisServerStartupSettings
impl Debug for RedisServerStartupSettings
Source§impl<'de> Deserialize<'de> for RedisServerStartupSettings
impl<'de> Deserialize<'de> for RedisServerStartupSettings
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 RedisServerStartupSettings
impl RefUnwindSafe for RedisServerStartupSettings
impl Send for RedisServerStartupSettings
impl Sync for RedisServerStartupSettings
impl Unpin for RedisServerStartupSettings
impl UnwindSafe for RedisServerStartupSettings
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