#[non_exhaustive]pub struct SqlServerObjectIdentifier {
pub schema: String,
pub table: String,
/* private fields */
}
Expand description
SQLServer data source object identifier.
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
Required. The schema name.
table: String
Required. The table name.
Implementations§
Trait Implementations§
Source§impl Clone for SqlServerObjectIdentifier
impl Clone for SqlServerObjectIdentifier
Source§fn clone(&self) -> SqlServerObjectIdentifier
fn clone(&self) -> SqlServerObjectIdentifier
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 SqlServerObjectIdentifier
impl Debug for SqlServerObjectIdentifier
Source§impl Default for SqlServerObjectIdentifier
impl Default for SqlServerObjectIdentifier
Source§fn default() -> SqlServerObjectIdentifier
fn default() -> SqlServerObjectIdentifier
Returns the “default value” for a type. Read more
Source§impl Message for SqlServerObjectIdentifier
impl Message for SqlServerObjectIdentifier
impl StructuralPartialEq for SqlServerObjectIdentifier
Auto Trait Implementations§
impl Freeze for SqlServerObjectIdentifier
impl RefUnwindSafe for SqlServerObjectIdentifier
impl Send for SqlServerObjectIdentifier
impl Sync for SqlServerObjectIdentifier
impl Unpin for SqlServerObjectIdentifier
impl UnwindSafe for SqlServerObjectIdentifier
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