pub enum TestCommand {
Show 21 variants
ClearAll(Option<i32>),
ClearThat,
ClearThese,
Create(ResourceLocation, Option<i32>, Option<(i32, i32)>),
Locate(ResourceLocation),
Pos(Option<String>),
ResetClosest,
ResetThat,
ResetThese,
Run(ResourceLocation, Option<i32>, Option<bool>, Option<i32>, Option<i32>),
RunClosest(Option<i32>, Option<bool>),
RunThat(Option<i32>, Option<bool>),
RunThese(Option<i32>, Option<bool>),
RunMultiple(ResourceLocation, Option<i32>),
RunFailed(RunfailedTestCommand),
Stop,
Verify(ResourceLocation),
Export(ResourceLocation),
ExportClosest,
ExportThat,
ExportThese,
}Variants§
ClearAll(Option<i32>)
ClearThat
ClearThese
Create(ResourceLocation, Option<i32>, Option<(i32, i32)>)
Locate(ResourceLocation)
Pos(Option<String>)
ResetClosest
ResetThat
ResetThese
Run(ResourceLocation, Option<i32>, Option<bool>, Option<i32>, Option<i32>)
RunClosest(Option<i32>, Option<bool>)
RunThat(Option<i32>, Option<bool>)
RunThese(Option<i32>, Option<bool>)
RunMultiple(ResourceLocation, Option<i32>)
RunFailed(RunfailedTestCommand)
Stop
Verify(ResourceLocation)
Export(ResourceLocation)
ExportClosest
ExportThat
ExportThese
Trait Implementations§
Source§impl Clone for TestCommand
impl Clone for TestCommand
Source§fn clone(&self) -> TestCommand
fn clone(&self) -> TestCommand
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 TestCommand
impl Debug for TestCommand
Source§impl Display for TestCommand
impl Display for TestCommand
Source§impl HasMacro for TestCommand
impl HasMacro for TestCommand
Source§impl Hash for TestCommand
impl Hash for TestCommand
Source§impl PartialEq for TestCommand
impl PartialEq for TestCommand
impl Eq for TestCommand
impl StructuralPartialEq for TestCommand
Auto Trait Implementations§
impl Freeze for TestCommand
impl RefUnwindSafe for TestCommand
impl Send for TestCommand
impl Sync for TestCommand
impl Unpin for TestCommand
impl UnwindSafe for TestCommand
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more