#[repr(u8)]pub enum command_argument_type {
Show 54 variants
bool = 0,
float = 1,
double = 2,
integer = 3,
long = 4,
string = 5,
entity = 6,
game_profile = 7,
block_pos = 8,
column_pos = 9,
vec3 = 10,
vec2 = 11,
block_state = 12,
block_predicate = 13,
item_stack = 14,
item_predicate = 15,
color = 16,
component = 17,
style = 18,
message = 19,
nbt_compound_tag = 20,
nbt_tag = 21,
nbt_path = 22,
objective = 23,
objective_criteria = 24,
operation = 25,
particle = 26,
angle = 27,
rotation = 28,
scoreboard_slot = 29,
score_holder = 30,
swizzle = 31,
team = 32,
item_slot = 33,
item_slots = 34,
resource_location = 35,
function = 36,
entity_anchor = 37,
int_range = 38,
float_range = 39,
dimension = 40,
gamemode = 41,
time = 42,
resource_or_tag = 43,
resource_or_tag_key = 44,
resource = 45,
resource_key = 46,
template_mirror = 47,
template_rotation = 48,
heightmap = 49,
loot_table = 50,
loot_predicate = 51,
loot_modifier = 52,
uuid = 53,
}Variants§
bool = 0
float = 1
double = 2
integer = 3
long = 4
string = 5
entity = 6
game_profile = 7
block_pos = 8
column_pos = 9
vec3 = 10
vec2 = 11
block_state = 12
block_predicate = 13
item_stack = 14
item_predicate = 15
color = 16
component = 17
style = 18
message = 19
nbt_compound_tag = 20
nbt_tag = 21
nbt_path = 22
objective = 23
objective_criteria = 24
operation = 25
particle = 26
angle = 27
rotation = 28
scoreboard_slot = 29
score_holder = 30
swizzle = 31
team = 32
item_slot = 33
item_slots = 34
resource_location = 35
function = 36
entity_anchor = 37
int_range = 38
float_range = 39
dimension = 40
gamemode = 41
time = 42
resource_or_tag = 43
resource_or_tag_key = 44
resource = 45
resource_key = 46
template_mirror = 47
template_rotation = 48
heightmap = 49
loot_table = 50
loot_predicate = 51
loot_modifier = 52
uuid = 53
Implementations§
Trait Implementations§
Source§impl Clone for command_argument_type
impl Clone for command_argument_type
Source§fn clone(&self) -> command_argument_type
fn clone(&self) -> command_argument_type
Returns a copy 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 command_argument_type
impl Debug for command_argument_type
Source§impl Display for command_argument_type
impl Display for command_argument_type
Source§impl Hash for command_argument_type
impl Hash for command_argument_type
Source§impl PartialEq for command_argument_type
impl PartialEq for command_argument_type
Source§impl Write for command_argument_type
impl Write for command_argument_type
impl Copy for command_argument_type
impl Eq for command_argument_type
impl StructuralPartialEq for command_argument_type
Auto Trait Implementations§
impl Freeze for command_argument_type
impl RefUnwindSafe for command_argument_type
impl Send for command_argument_type
impl Sync for command_argument_type
impl Unpin for command_argument_type
impl UnwindSafe for command_argument_type
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