pub struct IndexData {
pub name: String,
pub columns: Vec<String>,
pub unique: bool,
}Expand description
Simplified index info for rendering.
Fields§
§name: StringIndex name
columns: Vec<String>Columns
unique: boolIs unique
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IndexData
impl RefUnwindSafe for IndexData
impl Send for IndexData
impl Sync for IndexData
impl Unpin for IndexData
impl UnsafeUnpin for IndexData
impl UnwindSafe for IndexData
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