pub struct IndexDefFrame {
pub name: String,
pub index_type: u8,
pub unique: bool,
pub columns: Vec<String>,
}Expand description
A decoded index definition.
Fields§
§name: String§index_type: u8§unique: bool§columns: Vec<String>Trait Implementations§
Source§impl Clone for IndexDefFrame
impl Clone for IndexDefFrame
Source§fn clone(&self) -> IndexDefFrame
fn clone(&self) -> IndexDefFrame
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexDefFrame
impl Debug for IndexDefFrame
impl Eq for IndexDefFrame
Source§impl PartialEq for IndexDefFrame
impl PartialEq for IndexDefFrame
impl StructuralPartialEq for IndexDefFrame
Auto Trait Implementations§
impl Freeze for IndexDefFrame
impl RefUnwindSafe for IndexDefFrame
impl Send for IndexDefFrame
impl Sync for IndexDefFrame
impl Unpin for IndexDefFrame
impl UnsafeUnpin for IndexDefFrame
impl UnwindSafe for IndexDefFrame
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