pub struct DeleteSearchSynonymParams {
pub collection_name: String,
pub synonym_id: String,
}
Expand description
struct for passing parameters to the method [delete_search_synonym
]
Fields§
§collection_name: String
The name of the collection
synonym_id: String
The ID of the search synonym to delete
Trait Implementations§
Source§impl Clone for DeleteSearchSynonymParams
impl Clone for DeleteSearchSynonymParams
Source§fn clone(&self) -> DeleteSearchSynonymParams
fn clone(&self) -> DeleteSearchSynonymParams
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 DeleteSearchSynonymParams
impl RefUnwindSafe for DeleteSearchSynonymParams
impl Send for DeleteSearchSynonymParams
impl Sync for DeleteSearchSynonymParams
impl Unpin for DeleteSearchSynonymParams
impl UnwindSafe for DeleteSearchSynonymParams
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