commit
1d406a245f
1 changed files with 2 additions and 2 deletions
|
@ -132,7 +132,7 @@ impl Default for CookieStoreMutex {
|
||||||
|
|
||||||
impl CookieStoreMutex {
|
impl CookieStoreMutex {
|
||||||
/// Create a new [`CookieStoreMutex`] from an existing [`cookie_store::CookieStore`].
|
/// Create a new [`CookieStoreMutex`] from an existing [`cookie_store::CookieStore`].
|
||||||
pub fn new(cookie_store: CookieStore) -> CookieStoreMutex {
|
pub const fn new(cookie_store: CookieStore) -> CookieStoreMutex {
|
||||||
CookieStoreMutex(Mutex::new(cookie_store))
|
CookieStoreMutex(Mutex::new(cookie_store))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,7 +175,7 @@ impl Default for CookieStoreRwLock {
|
||||||
|
|
||||||
impl CookieStoreRwLock {
|
impl CookieStoreRwLock {
|
||||||
/// Create a new [`CookieStoreRwLock`] from an existing [`cookie_store::CookieStore`].
|
/// Create a new [`CookieStoreRwLock`] from an existing [`cookie_store::CookieStore`].
|
||||||
pub fn new(cookie_store: CookieStore) -> CookieStoreRwLock {
|
pub const fn new(cookie_store: CookieStore) -> CookieStoreRwLock {
|
||||||
CookieStoreRwLock(RwLock::new(cookie_store))
|
CookieStoreRwLock(RwLock::new(cookie_store))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue