pub struct TestPlansHubRefreshData {Show 17 fields
pub define_column_option_fields: Vec<String>,
pub define_tab_custom_column_field_map: Option<Value>,
pub error_message: Option<String>,
pub execute_column_option_fields: Vec<String>,
pub execute_tab_custom_column_field_map: Option<Value>,
pub is_advanced_extension_enabled: Option<bool>,
pub selected_pivot_id: Option<String>,
pub selected_suite_id: Option<i32>,
pub test_case_page_size: Option<i32>,
pub test_cases: Vec<TestCase>,
pub test_cases_continuation_token: Option<String>,
pub test_plan: Option<TestPlanDetailedReference>,
pub test_point_page_size: Option<i32>,
pub test_points: Vec<TestPoint>,
pub test_points_continuation_token: Option<String>,
pub test_suites: Vec<TestSuite>,
pub test_suites_continuation_token: Option<String>,
}
Expand description
This data model is used in TestPlansHubRefreshDataProvider and populates the data required for initial page load
Fields§
§define_column_option_fields: Vec<String>
§define_tab_custom_column_field_map: Option<Value>
§error_message: Option<String>
§execute_column_option_fields: Vec<String>
§execute_tab_custom_column_field_map: Option<Value>
§is_advanced_extension_enabled: Option<bool>
§selected_pivot_id: Option<String>
§selected_suite_id: Option<i32>
§test_case_page_size: Option<i32>
§test_cases: Vec<TestCase>
§test_cases_continuation_token: Option<String>
§test_plan: Option<TestPlanDetailedReference>
The test plan detailed reference resource. Contains additional workitem realted information
test_point_page_size: Option<i32>
§test_points: Vec<TestPoint>
§test_points_continuation_token: Option<String>
§test_suites: Vec<TestSuite>
§test_suites_continuation_token: Option<String>
Implementations§
Trait Implementations§
source§impl Clone for TestPlansHubRefreshData
impl Clone for TestPlansHubRefreshData
source§fn clone(&self) -> TestPlansHubRefreshData
fn clone(&self) -> TestPlansHubRefreshData
Returns a copy 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 Debug for TestPlansHubRefreshData
impl Debug for TestPlansHubRefreshData
source§impl Default for TestPlansHubRefreshData
impl Default for TestPlansHubRefreshData
source§fn default() -> TestPlansHubRefreshData
fn default() -> TestPlansHubRefreshData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestPlansHubRefreshData
impl<'de> Deserialize<'de> for TestPlansHubRefreshData
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 TestPlansHubRefreshData
impl PartialEq for TestPlansHubRefreshData
source§fn eq(&self, other: &TestPlansHubRefreshData) -> bool
fn eq(&self, other: &TestPlansHubRefreshData) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TestPlansHubRefreshData
impl Serialize for TestPlansHubRefreshData
impl StructuralPartialEq for TestPlansHubRefreshData
Auto Trait Implementations§
impl RefUnwindSafe for TestPlansHubRefreshData
impl Send for TestPlansHubRefreshData
impl Sync for TestPlansHubRefreshData
impl Unpin for TestPlansHubRefreshData
impl UnwindSafe for TestPlansHubRefreshData
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