#[non_exhaustive]pub struct OracleSchema {
pub schema: String,
pub oracle_tables: Vec<OracleTable>,
/* private fields */
}
Expand description
Oracle schema.
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.schema: String
Schema name.
oracle_tables: Vec<OracleTable>
Tables in the schema.
Implementations§
Source§impl OracleSchema
impl OracleSchema
pub fn new() -> Self
Sourcepub fn set_schema<T: Into<String>>(self, v: T) -> Self
pub fn set_schema<T: Into<String>>(self, v: T) -> Self
Sets the value of schema.
Sourcepub fn set_oracle_tables<T, V>(self, v: T) -> Self
pub fn set_oracle_tables<T, V>(self, v: T) -> Self
Sets the value of oracle_tables.
Trait Implementations§
Source§impl Clone for OracleSchema
impl Clone for OracleSchema
Source§fn clone(&self) -> OracleSchema
fn clone(&self) -> OracleSchema
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 OracleSchema
impl Debug for OracleSchema
Source§impl Default for OracleSchema
impl Default for OracleSchema
Source§fn default() -> OracleSchema
fn default() -> OracleSchema
Returns the “default value” for a type. Read more
Source§impl Message for OracleSchema
impl Message for OracleSchema
Source§impl PartialEq for OracleSchema
impl PartialEq for OracleSchema
impl StructuralPartialEq for OracleSchema
Auto Trait Implementations§
impl Freeze for OracleSchema
impl RefUnwindSafe for OracleSchema
impl Send for OracleSchema
impl Sync for OracleSchema
impl Unpin for OracleSchema
impl UnwindSafe for OracleSchema
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