pub struct DatabaseObjectName {
pub database_name: Option<String>,
pub object_name: Option<String>,
pub schema_name: Option<String>,
pub object_type: Option<DatabaseObjectType>,
}
Expand description
A representation of the name of an object in a database
Fields§
§database_name: Option<String>
The unescaped name of the database containing the object
object_name: Option<String>
The unescaped name of the object
schema_name: Option<String>
The unescaped name of the schema containing the object
object_type: Option<DatabaseObjectType>
An enumeration of type of objects
Implementations§
Trait Implementations§
Source§impl Clone for DatabaseObjectName
impl Clone for DatabaseObjectName
Source§fn clone(&self) -> DatabaseObjectName
fn clone(&self) -> DatabaseObjectName
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 DatabaseObjectName
impl Debug for DatabaseObjectName
Source§impl Default for DatabaseObjectName
impl Default for DatabaseObjectName
Source§fn default() -> DatabaseObjectName
fn default() -> DatabaseObjectName
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatabaseObjectName
impl<'de> Deserialize<'de> for DatabaseObjectName
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DatabaseObjectName
impl PartialEq for DatabaseObjectName
Source§impl Serialize for DatabaseObjectName
impl Serialize for DatabaseObjectName
impl StructuralPartialEq for DatabaseObjectName
Auto Trait Implementations§
impl Freeze for DatabaseObjectName
impl RefUnwindSafe for DatabaseObjectName
impl Send for DatabaseObjectName
impl Sync for DatabaseObjectName
impl Unpin for DatabaseObjectName
impl UnwindSafe for DatabaseObjectName
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