pub enum WithoutTls {}Expand description
Parameter defining that read transactions are opened without
Thread Local Storage (TLS) and are therefore Send.
When used to open transactions: A thread can use any number
of read transactions at a time on the same thread. Read transactions
can be moved in between threads (Send).
Trait Implementations§
Source§impl Debug for WithoutTls
impl Debug for WithoutTls
impl Eq for WithoutTls
Source§impl PartialEq for WithoutTls
impl PartialEq for WithoutTls
Source§fn eq(&self, other: &WithoutTls) -> bool
fn eq(&self, other: &WithoutTls) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WithoutTls
Auto Trait Implementations§
impl Freeze for WithoutTls
impl RefUnwindSafe for WithoutTls
impl Send for WithoutTls
impl Sync for WithoutTls
impl Unpin for WithoutTls
impl UnsafeUnpin for WithoutTls
impl UnwindSafe for WithoutTls
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