pub struct EvalList {
pub data: Vec<Eval>,
pub first_id: String,
pub last_id: String,
pub has_more: bool,
}
Expand description
An object representing a list of evals.
Fields§
§data: Vec<Eval>
An array of eval objects.
first_id: String
The identifier of the first eval in the data array.
last_id: String
The identifier of the last eval in the data array.
has_more: bool
Indicates whether there are more evals available.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EvalList
impl<'de> Deserialize<'de> for EvalList
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
impl StructuralPartialEq for EvalList
Auto Trait Implementations§
impl Freeze for EvalList
impl RefUnwindSafe for EvalList
impl Send for EvalList
impl Sync for EvalList
impl Unpin for EvalList
impl UnwindSafe for EvalList
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