pub struct DatabasePatternInfo {
pub db_type: String,
pub operations: Vec<String>,
pub orm_framework: Option<String>,
}
Expand description
Database pattern information
Fields§
§db_type: String
§operations: Vec<String>
§orm_framework: Option<String>
Trait Implementations§
Source§impl Clone for DatabasePatternInfo
impl Clone for DatabasePatternInfo
Source§fn clone(&self) -> DatabasePatternInfo
fn clone(&self) -> DatabasePatternInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DatabasePatternInfo
impl RefUnwindSafe for DatabasePatternInfo
impl Send for DatabasePatternInfo
impl Sync for DatabasePatternInfo
impl Unpin for DatabasePatternInfo
impl UnwindSafe for DatabasePatternInfo
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