pub struct TestItem {
pub id: String,
pub name: String,
pub class_name: Option<String>,
pub namespace: Option<String>,
pub category: String,
}Expand description
A single test item (Apex test or Flow test).
Fields§
§id: String§name: String§class_name: Option<String>§namespace: Option<String>§category: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for TestItem
impl<'de> Deserialize<'de> for TestItem
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 TestItem
impl RefUnwindSafe for TestItem
impl Send for TestItem
impl Sync for TestItem
impl Unpin for TestItem
impl UnwindSafe for TestItem
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