pub struct ListSamplesParams {
pub eval: String,
pub cursor: String,
}Expand description
list_samples params: ask for one more page of eval’s samples, continuing
from the opaque cursor last handed back (in EvalInfo::next_cursor or a
prior ListSamplesResult::next_cursor). Only studies advertising the
paginate capability answer this.
Fields§
§eval: String§cursor: StringOpaque token from the previous page. The host echoes it verbatim.
Trait Implementations§
Source§impl Clone for ListSamplesParams
impl Clone for ListSamplesParams
Source§fn clone(&self) -> ListSamplesParams
fn clone(&self) -> ListSamplesParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListSamplesParams
impl Debug for ListSamplesParams
Source§impl<'de> Deserialize<'de> for ListSamplesParams
impl<'de> Deserialize<'de> for ListSamplesParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListSamplesParams
impl RefUnwindSafe for ListSamplesParams
impl Send for ListSamplesParams
impl Sync for ListSamplesParams
impl Unpin for ListSamplesParams
impl UnsafeUnpin for ListSamplesParams
impl UnwindSafe for ListSamplesParams
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