pub struct ResultState {
pub failed: bool,
pub incomplete: bool,
pub disposition: TerminalDisposition,
}Fields§
§failed: bool§incomplete: bool§disposition: TerminalDispositionImplementations§
Source§impl ResultState
impl ResultState
pub const PASSED: Self
pub fn is_success(self) -> bool
Trait Implementations§
Source§impl Clone for ResultState
impl Clone for ResultState
Source§fn clone(&self) -> ResultState
fn clone(&self) -> ResultState
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 moreimpl Copy for ResultState
Source§impl Debug for ResultState
impl Debug for ResultState
Source§impl<'de> Deserialize<'de> for ResultState
impl<'de> Deserialize<'de> for ResultState
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
impl Eq for ResultState
Source§impl PartialEq for ResultState
impl PartialEq for ResultState
Source§impl Serialize for ResultState
impl Serialize for ResultState
impl StructuralPartialEq for ResultState
Auto Trait Implementations§
impl Freeze for ResultState
impl RefUnwindSafe for ResultState
impl Send for ResultState
impl Sync for ResultState
impl Unpin for ResultState
impl UnsafeUnpin for ResultState
impl UnwindSafe for ResultState
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