pub struct SearchExperimentsOptions<'a> {
pub filter: &'a str,
pub order_by: &'a [&'a str],
pub view_type: ViewType,
}
Expand description
Fields§
§filter: &'a str
§order_by: &'a [&'a str]
§view_type: ViewType
Trait Implementations§
Source§impl<'a> Clone for SearchExperimentsOptions<'a>
impl<'a> Clone for SearchExperimentsOptions<'a>
Source§fn clone(&self) -> SearchExperimentsOptions<'a>
fn clone(&self) -> SearchExperimentsOptions<'a>
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<'a> Debug for SearchExperimentsOptions<'a>
impl<'a> Debug for SearchExperimentsOptions<'a>
Source§impl<'a> Default for SearchExperimentsOptions<'a>
impl<'a> Default for SearchExperimentsOptions<'a>
Source§impl<'a> Serialize for SearchExperimentsOptions<'a>
impl<'a> Serialize for SearchExperimentsOptions<'a>
impl<'a> Copy for SearchExperimentsOptions<'a>
Auto Trait Implementations§
impl<'a> Freeze for SearchExperimentsOptions<'a>
impl<'a> RefUnwindSafe for SearchExperimentsOptions<'a>
impl<'a> Send for SearchExperimentsOptions<'a>
impl<'a> Sync for SearchExperimentsOptions<'a>
impl<'a> Unpin for SearchExperimentsOptions<'a>
impl<'a> UnwindSafe for SearchExperimentsOptions<'a>
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