pub struct TestSkipped {
pub message: String,
pub text: String,
pub skipped_type: String,
}
Expand description
Value from a <skipped />
tag
Fields§
§message: String
The message
attribute
text: String
Body of the <skipped />
tag
skipped_type: String
The type
attribute
Trait Implementations§
Source§impl Clone for TestSkipped
impl Clone for TestSkipped
Source§fn clone(&self) -> TestSkipped
fn clone(&self) -> TestSkipped
Returns a duplicate 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 TestSkipped
impl Debug for TestSkipped
Source§impl Default for TestSkipped
impl Default for TestSkipped
Source§fn default() -> TestSkipped
fn default() -> TestSkipped
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TestSkipped
impl<'de> Deserialize<'de> for TestSkipped
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 TestSkipped
impl RefUnwindSafe for TestSkipped
impl Send for TestSkipped
impl Sync for TestSkipped
impl Unpin for TestSkipped
impl UnwindSafe for TestSkipped
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