#[non_exhaustive]pub struct SqlServerRdbms {
pub schemas: Vec<SqlServerSchema>,
/* private fields */
}
Expand description
SQLServer 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.schemas: Vec<SqlServerSchema>
SQLServer schemas in the database server.
Implementations§
Source§impl SqlServerRdbms
impl SqlServerRdbms
pub fn new() -> Self
Sourcepub fn set_schemas<T, V>(self, v: T) -> Self
pub fn set_schemas<T, V>(self, v: T) -> Self
Sets the value of schemas.
Trait Implementations§
Source§impl Clone for SqlServerRdbms
impl Clone for SqlServerRdbms
Source§fn clone(&self) -> SqlServerRdbms
fn clone(&self) -> SqlServerRdbms
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 SqlServerRdbms
impl Debug for SqlServerRdbms
Source§impl Default for SqlServerRdbms
impl Default for SqlServerRdbms
Source§fn default() -> SqlServerRdbms
fn default() -> SqlServerRdbms
Returns the “default value” for a type. Read more
Source§impl Message for SqlServerRdbms
impl Message for SqlServerRdbms
Source§impl PartialEq for SqlServerRdbms
impl PartialEq for SqlServerRdbms
impl StructuralPartialEq for SqlServerRdbms
Auto Trait Implementations§
impl Freeze for SqlServerRdbms
impl RefUnwindSafe for SqlServerRdbms
impl Send for SqlServerRdbms
impl Sync for SqlServerRdbms
impl Unpin for SqlServerRdbms
impl UnwindSafe for SqlServerRdbms
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