pub struct ExperimentListPage {
pub items: Vec<Experiment>,
pub next_cursor: Option<String>,
pub has_more: bool,
}Expand description
One page of crate::resources::Experiments::list.
Fields§
§items: Vec<Experiment>Experiments in this page.
next_cursor: Option<String>Cursor for the next page, if any.
has_more: boolWhether more pages follow.
Trait Implementations§
Source§impl Clone for ExperimentListPage
impl Clone for ExperimentListPage
Source§fn clone(&self) -> ExperimentListPage
fn clone(&self) -> ExperimentListPage
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 ExperimentListPage
impl Debug for ExperimentListPage
Source§impl<'de> Deserialize<'de> for ExperimentListPage
impl<'de> Deserialize<'de> for ExperimentListPage
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 ExperimentListPage
impl RefUnwindSafe for ExperimentListPage
impl Send for ExperimentListPage
impl Sync for ExperimentListPage
impl Unpin for ExperimentListPage
impl UnsafeUnpin for ExperimentListPage
impl UnwindSafe for ExperimentListPage
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