pub enum ConnectorThreadingPolicy {
ThreadPerConnector,
SharedThreadPool,
InvokeInline,
}Expand description
Spec §7.4.4 — Threading-Policy fuer Connector-Operations.
Variants§
ThreadPerConnector
THREAD_PER_CONNECTOR — separater Thread pro Connector.
SHARED_THREAD_POOL — globaler Worker-Pool.
InvokeInline
INVOKE_INLINE — auf dem Caller-Thread.
Trait Implementations§
Source§impl Clone for ConnectorThreadingPolicy
impl Clone for ConnectorThreadingPolicy
Source§fn clone(&self) -> ConnectorThreadingPolicy
fn clone(&self) -> ConnectorThreadingPolicy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConnectorThreadingPolicy
impl Debug for ConnectorThreadingPolicy
Source§impl PartialEq for ConnectorThreadingPolicy
impl PartialEq for ConnectorThreadingPolicy
Source§fn eq(&self, other: &ConnectorThreadingPolicy) -> bool
fn eq(&self, other: &ConnectorThreadingPolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ConnectorThreadingPolicy
impl Eq for ConnectorThreadingPolicy
impl StructuralPartialEq for ConnectorThreadingPolicy
Auto Trait Implementations§
impl Freeze for ConnectorThreadingPolicy
impl RefUnwindSafe for ConnectorThreadingPolicy
impl Send for ConnectorThreadingPolicy
impl Sync for ConnectorThreadingPolicy
impl Unpin for ConnectorThreadingPolicy
impl UnsafeUnpin for ConnectorThreadingPolicy
impl UnwindSafe for ConnectorThreadingPolicy
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