embedded_redis_client 0.1.0

Automatically runs a local redis-server instance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::embedded_redis_server::states::CheckingRedisServerEnvironment;

pub struct ReadyToStart {
    _is_initialzed: bool,
}

impl ReadyToStart {
    pub fn from(_environment: CheckingRedisServerEnvironment) -> Self {
        ReadyToStart {
            _is_initialzed: true,
        }
    }
}