pub struct UpsertSearchOverrideParams {
pub collection_name: String,
pub override_id: String,
pub search_override_schema: SearchOverrideSchema,
}
Expand description
struct for passing parameters to the method [upsert_search_override
]
Fields§
§collection_name: String
The name of the collection
override_id: String
The ID of the search override to create/update
search_override_schema: SearchOverrideSchema
The search override object to be created/updated
Trait Implementations§
Source§impl Clone for UpsertSearchOverrideParams
impl Clone for UpsertSearchOverrideParams
Source§fn clone(&self) -> UpsertSearchOverrideParams
fn clone(&self) -> UpsertSearchOverrideParams
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 UpsertSearchOverrideParams
impl RefUnwindSafe for UpsertSearchOverrideParams
impl Send for UpsertSearchOverrideParams
impl Sync for UpsertSearchOverrideParams
impl Unpin for UpsertSearchOverrideParams
impl UnwindSafe for UpsertSearchOverrideParams
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