pub struct DatabaseInfo {
pub source_database_name: String,
}
Expand description
Project Database Details
Fields§
§source_database_name: String
Name of the database
Implementations§
Trait Implementations§
source§impl Clone for DatabaseInfo
impl Clone for DatabaseInfo
source§fn clone(&self) -> DatabaseInfo
fn clone(&self) -> DatabaseInfo
Returns a copy 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 DatabaseInfo
impl Debug for DatabaseInfo
source§impl<'de> Deserialize<'de> for DatabaseInfo
impl<'de> Deserialize<'de> for DatabaseInfo
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<DatabaseInfo> for DatabaseInfo
impl PartialEq<DatabaseInfo> for DatabaseInfo
source§fn eq(&self, other: &DatabaseInfo) -> bool
fn eq(&self, other: &DatabaseInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for DatabaseInfo
impl Serialize for DatabaseInfo
impl StructuralPartialEq for DatabaseInfo
Auto Trait Implementations§
impl RefUnwindSafe for DatabaseInfo
impl Send for DatabaseInfo
impl Sync for DatabaseInfo
impl Unpin for DatabaseInfo
impl UnwindSafe for DatabaseInfo
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