#[non_exhaustive]pub struct OracleRdbms {
pub oracle_schemas: Vec<OracleSchema>,
/* private fields */
}
Expand description
Oracle database structure.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.oracle_schemas: Vec<OracleSchema>
Oracle schemas/databases in the database server.
Implementations§
Source§impl OracleRdbms
impl OracleRdbms
pub fn new() -> Self
Sourcepub fn set_oracle_schemas<T, V>(self, v: T) -> Self
pub fn set_oracle_schemas<T, V>(self, v: T) -> Self
Sets the value of oracle_schemas.
Trait Implementations§
Source§impl Clone for OracleRdbms
impl Clone for OracleRdbms
Source§fn clone(&self) -> OracleRdbms
fn clone(&self) -> OracleRdbms
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 OracleRdbms
impl Debug for OracleRdbms
Source§impl Default for OracleRdbms
impl Default for OracleRdbms
Source§fn default() -> OracleRdbms
fn default() -> OracleRdbms
Returns the “default value” for a type. Read more
Source§impl Message for OracleRdbms
impl Message for OracleRdbms
Source§impl PartialEq for OracleRdbms
impl PartialEq for OracleRdbms
impl StructuralPartialEq for OracleRdbms
Auto Trait Implementations§
impl Freeze for OracleRdbms
impl RefUnwindSafe for OracleRdbms
impl Send for OracleRdbms
impl Sync for OracleRdbms
impl Unpin for OracleRdbms
impl UnwindSafe for OracleRdbms
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