pub struct SQLIndexInfo {
pub name: String,
pub columns: Vec<String>,
pub is_unique: bool,
pub is_primary: bool,
pub index_type: String,
}Fields§
§name: String§columns: Vec<String>§is_unique: bool§is_primary: bool§index_type: StringTrait Implementations§
Source§impl Clone for SQLIndexInfo
impl Clone for SQLIndexInfo
Source§fn clone(&self) -> SQLIndexInfo
fn clone(&self) -> SQLIndexInfo
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 moreAuto Trait Implementations§
impl Freeze for SQLIndexInfo
impl RefUnwindSafe for SQLIndexInfo
impl Send for SQLIndexInfo
impl Sync for SQLIndexInfo
impl Unpin for SQLIndexInfo
impl UnsafeUnpin for SQLIndexInfo
impl UnwindSafe for SQLIndexInfo
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