pub enum HandleMode {
Cloud,
Cloudsim,
Onprem,
}
Expand description
The Oracle NoSQL Database mode to use.
Variants§
Cloud
Connect to the Oracle NoSQL Cloud Service.
Cloudsim
Connect to a local Cloudsim instance (typically for testing purposes).
Onprem
Connect to an on-premises installation of NoSQL Database Server.
Trait Implementations§
Source§impl Clone for HandleMode
impl Clone for HandleMode
Source§fn clone(&self) -> HandleMode
fn clone(&self) -> HandleMode
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 HandleMode
impl Debug for HandleMode
Source§impl Default for HandleMode
impl Default for HandleMode
Source§fn default() -> HandleMode
fn default() -> HandleMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for HandleMode
impl PartialEq for HandleMode
impl StructuralPartialEq for HandleMode
Auto Trait Implementations§
impl Freeze for HandleMode
impl RefUnwindSafe for HandleMode
impl Send for HandleMode
impl Sync for HandleMode
impl Unpin for HandleMode
impl UnwindSafe for HandleMode
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