pub struct TestSuiteRunsPaginatedResponse {
pub results: Vec<TestSuiteRun>,
pub metadata: PaginationMeta,
}
Fields§
§results: Vec<TestSuiteRun>
§metadata: PaginationMeta
Implementations§
Source§impl TestSuiteRunsPaginatedResponse
impl TestSuiteRunsPaginatedResponse
pub fn new( results: Vec<TestSuiteRun>, metadata: PaginationMeta, ) -> TestSuiteRunsPaginatedResponse
Trait Implementations§
Source§impl Clone for TestSuiteRunsPaginatedResponse
impl Clone for TestSuiteRunsPaginatedResponse
Source§fn clone(&self) -> TestSuiteRunsPaginatedResponse
fn clone(&self) -> TestSuiteRunsPaginatedResponse
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 Default for TestSuiteRunsPaginatedResponse
impl Default for TestSuiteRunsPaginatedResponse
Source§fn default() -> TestSuiteRunsPaginatedResponse
fn default() -> TestSuiteRunsPaginatedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestSuiteRunsPaginatedResponse
impl<'de> Deserialize<'de> for TestSuiteRunsPaginatedResponse
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
Source§impl PartialEq for TestSuiteRunsPaginatedResponse
impl PartialEq for TestSuiteRunsPaginatedResponse
Source§fn eq(&self, other: &TestSuiteRunsPaginatedResponse) -> bool
fn eq(&self, other: &TestSuiteRunsPaginatedResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TestSuiteRunsPaginatedResponse
Auto Trait Implementations§
impl Freeze for TestSuiteRunsPaginatedResponse
impl RefUnwindSafe for TestSuiteRunsPaginatedResponse
impl Send for TestSuiteRunsPaginatedResponse
impl Sync for TestSuiteRunsPaginatedResponse
impl Unpin for TestSuiteRunsPaginatedResponse
impl UnwindSafe for TestSuiteRunsPaginatedResponse
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