pub struct CreateIndexArgs {
pub database: String,
pub table: String,
pub indexes: Vec<IndexSchema>,
}Expand description
create index args response with crate::mochow::api::CommonResponse
click https://cloud.baidu.com/doc/VDB/s/Elrsob14o#%E5%93%8D%E5%BA%94%E5%8F%82%E6%95%B0 for more detail of every param
Fields§
§database: String§table: String§indexes: Vec<IndexSchema>Trait Implementations§
Source§impl Clone for CreateIndexArgs
impl Clone for CreateIndexArgs
Source§fn clone(&self) -> CreateIndexArgs
fn clone(&self) -> CreateIndexArgs
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 CreateIndexArgs
impl Debug for CreateIndexArgs
Source§impl IntoRequest for CreateIndexArgs
impl IntoRequest for CreateIndexArgs
fn into_request( self, config: &ClientConfiguration, client: &ClientWithMiddleware, ) -> RequestBuilder
Auto Trait Implementations§
impl Freeze for CreateIndexArgs
impl RefUnwindSafe for CreateIndexArgs
impl Send for CreateIndexArgs
impl Sync for CreateIndexArgs
impl Unpin for CreateIndexArgs
impl UnwindSafe for CreateIndexArgs
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