pub struct IndexAlternative {
pub index_type: String,
pub rejection_reason: String,
pub estimated_cost: f64,
}Expand description
Alternative index that was considered
Fields§
§index_type: StringIndex type
rejection_reason: StringWhy it wasn’t selected
estimated_cost: f64Estimated cost if this index was used
Trait Implementations§
Source§impl Clone for IndexAlternative
impl Clone for IndexAlternative
Source§fn clone(&self) -> IndexAlternative
fn clone(&self) -> IndexAlternative
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 moreSource§impl Debug for IndexAlternative
impl Debug for IndexAlternative
Source§impl<'de> Deserialize<'de> for IndexAlternative
impl<'de> Deserialize<'de> for IndexAlternative
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
Auto Trait Implementations§
impl Freeze for IndexAlternative
impl RefUnwindSafe for IndexAlternative
impl Send for IndexAlternative
impl Sync for IndexAlternative
impl Unpin for IndexAlternative
impl UnsafeUnpin for IndexAlternative
impl UnwindSafe for IndexAlternative
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