pub struct RunxListItem {
pub kind: RunxListItemKind,
pub name: String,
pub source: RunxListSource,
pub path: String,
pub status: RunxListStatus,
pub diagnostics: Option<Vec<String>>,
pub scopes: Option<Vec<String>>,
pub emits: Option<Vec<RunxListEmit>>,
pub fixtures: Option<u64>,
pub harness_cases: Option<u64>,
pub steps: Option<u64>,
pub wraps: Option<String>,
}Fields§
§kind: RunxListItemKind§name: String§source: RunxListSource§path: String§status: RunxListStatus§diagnostics: Option<Vec<String>>§scopes: Option<Vec<String>>§emits: Option<Vec<RunxListEmit>>§fixtures: Option<u64>§harness_cases: Option<u64>§steps: Option<u64>§wraps: Option<String>Trait Implementations§
Source§impl Clone for RunxListItem
impl Clone for RunxListItem
Source§fn clone(&self) -> RunxListItem
fn clone(&self) -> RunxListItem
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 RunxListItem
impl Debug for RunxListItem
Source§impl<'de> Deserialize<'de> for RunxListItem
impl<'de> Deserialize<'de> for RunxListItem
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunxListItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RunxListItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RunxListItem
Source§impl PartialEq for RunxListItem
impl PartialEq for RunxListItem
Source§fn eq(&self, other: &RunxListItem) -> bool
fn eq(&self, other: &RunxListItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for RunxListItem
impl RunxSchema for RunxListItem
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
Source§impl Serialize for RunxListItem
impl Serialize for RunxListItem
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RunxListItem
Auto Trait Implementations§
impl Freeze for RunxListItem
impl RefUnwindSafe for RunxListItem
impl Send for RunxListItem
impl Sync for RunxListItem
impl Unpin for RunxListItem
impl UnsafeUnpin for RunxListItem
impl UnwindSafe for RunxListItem
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.