Enum GoTestKind
pub enum GoTestKind {
Test,
Benchmark,
Fuzz,
Example,
}Expand description
Go test kind metadata.
Variants§
Implementations§
§impl GoTestKind
impl GoTestKind
Trait Implementations§
§impl Clone for GoTestKind
impl Clone for GoTestKind
§fn clone(&self) -> GoTestKind
fn clone(&self) -> GoTestKind
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 more§impl Debug for GoTestKind
impl Debug for GoTestKind
§impl Display for GoTestKind
impl Display for GoTestKind
§impl FromStr for GoTestKind
impl FromStr for GoTestKind
§type Err = GoTestError
type Err = GoTestError
The associated error which can be returned from parsing.
§fn from_str(value: &str) -> Result<GoTestKind, <GoTestKind as FromStr>::Err>
fn from_str(value: &str) -> Result<GoTestKind, <GoTestKind as FromStr>::Err>
Parses a string
s to return a value of this type. Read more§impl Hash for GoTestKind
impl Hash for GoTestKind
§impl Ord for GoTestKind
impl Ord for GoTestKind
§impl PartialEq for GoTestKind
impl PartialEq for GoTestKind
§impl PartialOrd for GoTestKind
impl PartialOrd for GoTestKind
impl Copy for GoTestKind
impl Eq for GoTestKind
impl StructuralPartialEq for GoTestKind
Auto Trait Implementations§
impl Freeze for GoTestKind
impl RefUnwindSafe for GoTestKind
impl Send for GoTestKind
impl Sync for GoTestKind
impl Unpin for GoTestKind
impl UnsafeUnpin for GoTestKind
impl UnwindSafe for GoTestKind
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