pub struct Performance {
pub ignore_clock_skew: bool,
pub single_threaded_executor: bool,
}Fields§
§ignore_clock_skew: boolIgnore clock skew allows the client to make a successful connection to the server, even when the client and server clocks are out of sync.
single_threaded_executor: boolUse a single-threaded executor. The default executor uses a thread pool with a worker thread for each CPU core available on the system.
Trait Implementations§
Source§impl Clone for Performance
impl Clone for Performance
Source§fn clone(&self) -> Performance
fn clone(&self) -> Performance
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 Performance
impl Debug for Performance
Source§impl<'de> Deserialize<'de> for Performance
impl<'de> Deserialize<'de> for Performance
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
Source§impl PartialEq for Performance
impl PartialEq for Performance
Source§impl Serialize for Performance
impl Serialize for Performance
impl StructuralPartialEq for Performance
Auto Trait Implementations§
impl Freeze for Performance
impl RefUnwindSafe for Performance
impl Send for Performance
impl Sync for Performance
impl Unpin for Performance
impl UnwindSafe for Performance
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