pub struct UpsertAliasParams {
pub alias_name: String,
pub collection_alias_schema: Option<CollectionAliasSchema>,
}
Expand description
struct for passing parameters to the method [upsert_alias
]
Fields§
§alias_name: String
The name of the alias to create/update
collection_alias_schema: Option<CollectionAliasSchema>
Collection alias to be created/updated
Trait Implementations§
Source§impl Clone for UpsertAliasParams
impl Clone for UpsertAliasParams
Source§fn clone(&self) -> UpsertAliasParams
fn clone(&self) -> UpsertAliasParams
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 moreAuto Trait Implementations§
impl Freeze for UpsertAliasParams
impl RefUnwindSafe for UpsertAliasParams
impl Send for UpsertAliasParams
impl Sync for UpsertAliasParams
impl Unpin for UpsertAliasParams
impl UnwindSafe for UpsertAliasParams
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