pub struct IndexDecl {
pub name: String,
pub columns: Vec<(String, SortDirection)>,
pub kind: IndexKind,
}Fields§
§name: String§columns: Vec<(String, SortDirection)>§kind: IndexKindImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IndexDecl
impl<'de> Deserialize<'de> for IndexDecl
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
impl Eq for IndexDecl
impl StructuralPartialEq for IndexDecl
Auto Trait Implementations§
impl Freeze for IndexDecl
impl RefUnwindSafe for IndexDecl
impl Send for IndexDecl
impl Sync for IndexDecl
impl Unpin for IndexDecl
impl UnsafeUnpin for IndexDecl
impl UnwindSafe for IndexDecl
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