pub struct ListSamplesResult {
pub samples: Vec<SampleInfo>,
pub next_cursor: Option<String>,
}Expand description
list_samples result: one page of samples plus the cursor for the page after
it (None once the dataset is exhausted).
Fields§
§samples: Vec<SampleInfo>§next_cursor: Option<String>Opaque token for the next page, or None when this was the last page.
Trait Implementations§
Source§impl Clone for ListSamplesResult
impl Clone for ListSamplesResult
Source§fn clone(&self) -> ListSamplesResult
fn clone(&self) -> ListSamplesResult
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 ListSamplesResult
impl Debug for ListSamplesResult
Source§impl<'de> Deserialize<'de> for ListSamplesResult
impl<'de> Deserialize<'de> for ListSamplesResult
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 ListSamplesResult
impl RefUnwindSafe for ListSamplesResult
impl Send for ListSamplesResult
impl Sync for ListSamplesResult
impl Unpin for ListSamplesResult
impl UnsafeUnpin for ListSamplesResult
impl UnwindSafe for ListSamplesResult
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