Macros§
- continue_
if_ err - Continues the loop if
$value
isErr
. Otherwise it returns the contained value. - continue_
if_ no_ match - Continues the loop if
$value
does not match$pattern
. Otherwise it returns$f
. - continue_
if_ none - Continues the loop if
$value
isNone
. Otherwise it returns the contained value. - iterate_
slice_ in_ triplets - Iterates a slice in triplets.
- match_
or_ panic - Panics if
$value
does not match$pattern
. Otherwise it returns$f
. - return_
if_ err - Ends the function call if
$value
isErr
. Otherwise it returns the contained value. - return_
if_ no_ match - Ends the function call if
$value
does not match$pattern
. Otherwise it returns$f
- return_
if_ none - Ends the function call if
$value
isNone
. Otherwise it returns the contained value.
Enums§
Constants§
- FILE_
EXTENSION - The file extension of the main HillVacuum file format.
- TEXTURE_
HEIGHT_ RANGE - The range of the possible draw heights of a texture.
Traits§
- Next
Value - A trait for iterators to get the next value and immediately unwrap it.