pub struct TestPollResponse {
pub run_id: String,
pub state: TestRunState,
pub next_seq: u64,
pub events: Vec<TestEvent>,
pub result: Option<TestRunResult>,
}Fields§
§run_id: String§state: TestRunState§next_seq: u64§events: Vec<TestEvent>§result: Option<TestRunResult>Trait Implementations§
Source§impl Clone for TestPollResponse
impl Clone for TestPollResponse
Source§fn clone(&self) -> TestPollResponse
fn clone(&self) -> TestPollResponse
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 TestPollResponse
impl Debug for TestPollResponse
Source§impl<'de> Deserialize<'de> for TestPollResponse
impl<'de> Deserialize<'de> for TestPollResponse
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 TestPollResponse
impl RefUnwindSafe for TestPollResponse
impl Send for TestPollResponse
impl Sync for TestPollResponse
impl Unpin for TestPollResponse
impl UnsafeUnpin for TestPollResponse
impl UnwindSafe for TestPollResponse
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