pub enum ServerType {
Dedicated,
Pooled,
Shared,
Unknown,
}
Expand description
The type of server process associated with a connection
It is only available with Oracle Client libraries 23.4 or higher.
Variants§
Dedicated
A dedicated server process is being used with the connection.
Pooled
A pooled server process (DRCP) is being used with the connection.
A shared server process is being used with the connection.
Unknown
The type of server process is unknown.
Trait Implementations§
Source§impl Clone for ServerType
impl Clone for ServerType
Source§fn clone(&self) -> ServerType
fn clone(&self) -> ServerType
Returns a copy 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 ServerType
impl Debug for ServerType
Source§impl PartialEq for ServerType
impl PartialEq for ServerType
impl Copy for ServerType
impl Eq for ServerType
impl StructuralPartialEq for ServerType
Auto Trait Implementations§
impl Freeze for ServerType
impl RefUnwindSafe for ServerType
impl Send for ServerType
impl Sync for ServerType
impl Unpin for ServerType
impl UnwindSafe for ServerType
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