Struct azure_devops_rust_api::test::models::TestPointsQuery
source · pub struct TestPointsQuery {
pub order_by: Option<String>,
pub points: Vec<TestPoint>,
pub points_filter: Option<PointsFilter>,
pub wit_fields: Vec<String>,
}Expand description
Test point query class.
Fields§
§order_by: Option<String>Order by results.
points: Vec<TestPoint>List of test points
points_filter: Option<PointsFilter>Filter class for test point.
wit_fields: Vec<String>List of workitem fields to get.
Implementations§
Trait Implementations§
source§impl Clone for TestPointsQuery
impl Clone for TestPointsQuery
source§fn clone(&self) -> TestPointsQuery
fn clone(&self) -> TestPointsQuery
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 TestPointsQuery
impl Debug for TestPointsQuery
source§impl Default for TestPointsQuery
impl Default for TestPointsQuery
source§fn default() -> TestPointsQuery
fn default() -> TestPointsQuery
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TestPointsQuery
impl<'de> Deserialize<'de> for TestPointsQuery
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<TestPointsQuery> for TestPointsQuery
impl PartialEq<TestPointsQuery> for TestPointsQuery
source§fn eq(&self, other: &TestPointsQuery) -> bool
fn eq(&self, other: &TestPointsQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for TestPointsQuery
impl Serialize for TestPointsQuery
impl StructuralPartialEq for TestPointsQuery
Auto Trait Implementations§
impl RefUnwindSafe for TestPointsQuery
impl Send for TestPointsQuery
impl Sync for TestPointsQuery
impl Unpin for TestPointsQuery
impl UnwindSafe for TestPointsQuery
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