Struct game_library::Attribute
source · pub struct Attribute {
pub max: u32,
pub current: u32,
}
Expand description
Attribute component. This is a simple integer representing the attribute of an entity.
Has properties like max_attribute
and current_attribute
. We support operations with
integers, floats, and other Attribute
components.
We use positive integers for attribute, and negative integers for damage. There’s no reason
to support negative attribute and negative max_attribute
, so we don’t. We also won’t allow
current_attribute
to be greater than max_attribute
.
Because we use integers, we can’t represent fractional attribute. It’s a bit of a tradeoff, but it’s a design decision (and I guess it can be changed later at great effort).
All operations that are performed directly between a Attribute
component and another value will
use the current_attribute
value. For example, if you add a Attribute
component with current_attribute
of 10 to a Attribute
component with current_attribute
of 20, the result will be a Attribute
component
with current_attribute
of 30. This holds true for all operations (addition, subtraction, multiplication,
division, etc.).
What is supported:
- Affecting (adding/subtracting) attribute with integers, floats, and other
Attribute
components. - Scaling the current attribute with integers, floats, and other
Attribute
components - Scaling the max attribute with integers, floats, and other
Attribute
components - Scaling the current attribute by a percentage of the max attribute (with integers, floats, and other
Attribute
components) - Comparing attribute with integers, floats, and other
Attribute
components. - Getting the percentage of attribute remaining (as a rounded integer between 0 and 100 OR a precise float between 0 and 1).
- Check
is_empty
to see if the entity is dead (i.e.current_attribute
is 0). - Check
is_full
to see if the entity is at full attribute (i.e.current_attribute
is equal tomax_attribute
).
Fields§
§max: u32
The maximum value for the attribute of the entity
current: u32
The current value for the attribute of the entity
Implementations§
source§impl Attribute
impl Attribute
sourcepub const fn is_empty(&self) -> bool
pub const fn is_empty(&self) -> bool
Returns true if the current attribute is equal to 0
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
assert_eq!(attribute.is_empty(), false);
attribute.set(0_u32);
assert_eq!(attribute.is_empty(), true);
sourcepub const fn is_full(&self) -> bool
pub const fn is_full(&self) -> bool
Returns true if the current attribute is equal to the max attribute.
Note
If max attribute is 0, this will always return true (because current attribute will always be 0 if max attribute is 0)
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
assert_eq!(attribute.is_full(), true);
attribute.set(0_u32);
assert_eq!(attribute.is_full(), false);
attribute.set_max(0_u32);
assert_eq!(attribute.is_full(), true);
sourcepub fn remaining(&self) -> f32
pub fn remaining(&self) -> f32
Returns the percentage of attribute remaining as a float between 0.00 and 1.00
Note
This will always return 1.00 if max attribute is 0 (because current attribute will always be 0 if max attribute is 0)
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
assert_eq!(attribute.remaining(), 1.0);
attribute.set(5_u32);
assert_eq!(attribute.remaining(), 0.5);
attribute.set(0_u32);
assert_eq!(attribute.remaining(), 0.0);
attribute.set_max(0_u32);
assert_eq!(attribute.remaining(), 1.0);
sourcepub fn percentage_remaining(&self) -> u32
pub fn percentage_remaining(&self) -> u32
Returns the percentage of attribute remaining as an integer between 0% and 100%
Note
This will always return 100% if max attribute is 0 (because current attribute will always be 0 if max attribute is 0)
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
assert_eq!(attribute.percentage_remaining(), 100);
attribute.set(5_u32);
assert_eq!(attribute.percentage_remaining(), 50);
attribute.set(0_u32);
assert_eq!(attribute.percentage_remaining(), 0);
attribute.set_max(0_u32);
assert_eq!(attribute.percentage_remaining(), 100);
sourcepub fn new(max_attribute: impl Into<u32>) -> Self
pub fn new(max_attribute: impl Into<u32>) -> Self
Creates a new Attribute
component with the given max_attribute
and current_attribute
.
Arguments
max_attribute
- The maximum attribute of the entity. This will be converted into au32
and clamped
Returns
- Self - The new
Attribute
component
Examples
use game_library::Attribute;
let attribute = Attribute::new(10_u32);
sourcepub fn new_with_current(
current_attribute: impl Into<u32>,
max_attribute: impl Into<u32>
) -> Self
pub fn new_with_current( current_attribute: impl Into<u32>, max_attribute: impl Into<u32> ) -> Self
Creates a new Attribute
component with the given max_attribute
and current_attribute
.
Arguments
current_attribute
- The current attribute of the entity. This will be converted into au32
and clampedmax_attribute
- The maximum attribute of the entity. This will be converted into au32
and clamped
Returns
- Self - The new
Attribute
component
Examples
use game_library::Attribute;
let attribute = Attribute::new_with_current(5_u32, 10_u32);
assert_eq!(attribute.current, 5_u32);
assert_eq!(attribute.max, 10_u32);
sourcepub fn add_to_max(&mut self, amount: impl Into<i64>)
pub fn add_to_max(&mut self, amount: impl Into<i64>)
Adds the given amount to the max attribute, while clamping max attribute within acceptable bounds.
Also ensures that current_attribute
is not greater than max_attribute
(in cases where a negative
amount is added here).
Arguments
amount
- The amount to add to the max attribute. This can be a positive or negative number, which will increase or decrease the max attribute respectively.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
attribute.add_to_max(5);
assert_eq!(attribute.max, 15_u32);
assert_eq!(attribute.current, 10_u32);
attribute.add_to_max(-5);
assert_eq!(attribute.max, 10_u32);
assert_eq!(attribute.current, 10_u32);
attribute.set(15_u32);
attribute.add_to_max(25);
assert_eq!(attribute.max, 35_u32);
assert_eq!(attribute.current, 10_u32);
sourcepub fn scale_max(&mut self, amount: impl Into<f64> + PartialOrd<f64>)
pub fn scale_max(&mut self, amount: impl Into<f64> + PartialOrd<f64>)
Scales the max attribute by the given amount, while clamping max attribute within acceptable bounds. Also
ensures that current_attribute
is not greater than max_attribute
(in cases where the scale value is
less than 1; i.e. the max attribute is decreased).
Arguments
amount
- The amount to scale the max attribute by. This should be a positive number. See the sister functionscale_max_attribute_by_percentage
for a function that takes a percentage (integer value).
Note
- Really large numbers will just cause max attribute to be set to
Attribute::MAX
. - Negative numbers will cause max attribute to be set to 0.
- This is a sister function to
scale_max_attribute_by_percentage
which takes a percentage value instead
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
attribute.scale_max(2.0);
assert_eq!(attribute.max, 20_u32);
assert_eq!(attribute.current, 10_u32);
attribute.scale_max(0.5);
assert_eq!(attribute.max, 10_u32);
assert_eq!(attribute.current, 10_u32);
sourcepub fn scale_max_by_percentage(&mut self, amount: impl Into<i32>)
pub fn scale_max_by_percentage(&mut self, amount: impl Into<i32>)
Scales the max attribute by the given percentage, while clamping max attribute within acceptable bounds. Also
ensures that current_attribute
is not greater than max_attribute
(in cases where the scale value is
less than 100; i.e. the max attribute is decreased).
Arguments
amount
- The percentage to scale the max attribute by. This should be a positive number. Really large numbers will just cause max attribute to be set tou32::MAX
.
Note
- Really large numbers will just cause max attribute to be set to
Attribute::MAX
. - Negative numbers will cause max attribute to be set to 0.
- This is a sister function to
scale_max_attribute
which takes a float value instead of a percentage.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
attribute.scale_max_by_percentage(200);
assert_eq!(attribute.max, 20_u32);
assert_eq!(attribute.current, 10_u32);
attribute.scale_max_by_percentage(50);
assert_eq!(attribute.max, 10_u32);
assert_eq!(attribute.current, 10_u32);
sourcepub fn add_to_current(&mut self, amount: impl Into<i64>)
pub fn add_to_current(&mut self, amount: impl Into<i64>)
Adds the given amount to the current attribute, while clamping current attribute within acceptable bounds.
(i.e. between 0 and max_attribute
). This will not affect max_attribute
.
Arguments
amount
- The amount to add to the current attribute. This can be a positive or negative number, which will increase or decrease the current attribute respectively.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new_with_current(5_u32, 10_u32);
assert_eq!(attribute.current, 5_u32);
attribute.add_to_current(5);
assert_eq!(attribute.current, 10_u32);
sourcepub fn scale_current(&mut self, amount: impl Into<f64> + PartialOrd<f64>)
pub fn scale_current(&mut self, amount: impl Into<f64> + PartialOrd<f64>)
Scales the current attribute by the given amount, while clamping current attribute within acceptable bounds.
(i.e. between 0 and max_attribute
). This will not affect max_attribute
. This takes a float value; e.g.,
0.5
will scale the current attribute by 50% (i.e. half the current attribute), while 2.0
will scale the
current attribute by 200% (i.e. double the current attribute).
There’s a similar function add_to_current_attribute_by_scale_max_attribute
which applies the same logic but
uses the max_attribute
as the scale value to arrive at an amount to change the current attribute by.
Arguments
amount
- The amount to scale the current attribute by. This should be a positive number. See the sister functionscale_current_attribute_by_percentage
for a function that takes a percentage (integer value).
Examples
use game_library::Attribute;
let mut attribute = Attribute::new_with_current(5_u32, 10_u32);
assert_eq!(attribute.current, 5_u32);
attribute.scale_current(2.0);
assert_eq!(attribute.current, 10_u32);
sourcepub fn scale_current_by_percentage(&mut self, amount: impl Into<i32>)
pub fn scale_current_by_percentage(&mut self, amount: impl Into<i32>)
Scales the current attribute by the given percentage, while clamping current attribute within acceptable bounds.
There’s a similar function add_to_current_attribute_by_scale_max_attribute_percentage
which applies the same logic but
uses the max_attribute
as the scale value to arrive at an amount to change the current attribute by.
Arguments
amount
- The percentage to scale the current attribute by. This should be a positive number. Really large numbers will just cause current attribute to be set tou32::MAX
.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new_with_current(5_u32, 10_u32);
assert_eq!(attribute.current, 5_u32);
attribute.scale_current_by_percentage(200);
assert_eq!(attribute.current, 10_u32);
sourcepub fn add_to_current_by_scale_max(
&mut self,
amount: impl Into<f64> + PartialOrd<f64>
)
pub fn add_to_current_by_scale_max( &mut self, amount: impl Into<f64> + PartialOrd<f64> )
Adds to current attribute by scaling the max_attribute
by the given amount, while clamping current attribute within
acceptable bounds. (i.e. between 0 and max_attribute
). This will not affect max_attribute
. This takes a float
and expects negatives to be used to decrease the current attribute, and positives to be used to increase the
current attribute.
There’s a similar function scale_current_attribute_by_scale_max_attribute_percentage
which applies the same logic but
expects a percentage value (e.g. 50) instead of a float (e.g. 0.5).
Arguments
amount
- The amount to scale the max attribute by. If this is positive, the current attribute will increase. If this is negative, the current attribute will decrease.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new_with_current(5_u32, 100_u32);
assert_eq!(attribute.current, 5_u32);
assert_eq!(attribute.max, 100_u32);
attribute.add_to_current_by_scale_max(0.05);
assert_eq!(attribute.current, 10_u32);
assert_eq!(attribute.max, 100_u32);
sourcepub fn add_to_current_by_scale_max_percentage(&mut self, amount: impl Into<i32>)
pub fn add_to_current_by_scale_max_percentage(&mut self, amount: impl Into<i32>)
Adds to current attribute by scaling the max_attribute
by the given percentage, while clamping current attribute within
acceptable bounds. (i.e. between 0 and max_attribute
). This will not affect max_attribute
. This takes a percentage
and expects negatives to be used to decrease the current attribute, and positives to be used to increase the
current attribute.
There’s a similar function add_to_current_attribute_by_scale_max_attribute
which applies the same logic but
expects a float value (e.g. 0.5) instead of a percentage (e.g. 50).
Arguments
amount
- The percentage to scale the max attribute by. If this is positive, the current attribute will increase. If this is negative, the current attribute will decrease.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new_with_current(5_u32, 100_u32);
assert_eq!(attribute.current, 5_u32);
assert_eq!(attribute.max, 100_u32);
attribute.add_to_current_by_scale_max_percentage(20);
assert_eq!(attribute.current, 25_u32);
assert_eq!(attribute.max, 100_u32);
sourcepub fn set(&mut self, value: impl Into<u32>)
pub fn set(&mut self, value: impl Into<u32>)
Set the current value directly.
Arguments
value
- The value to set the current attribute to. This will be clamped between 0 andmax_attribute
.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
assert_eq!(attribute.current, 10_u32);
assert_eq!(attribute.max, 10_u32);
attribute.set(5_u32);
assert_eq!(attribute.current, 5_u32);
assert_eq!(attribute.max, 10_u32);
sourcepub fn set_max(&mut self, value: impl Into<u32>)
pub fn set_max(&mut self, value: impl Into<u32>)
Set the max value directly.
Arguments
value
- The value to set the max attribute to. This will be clamped between 0 andu32::MAX
.
Examples
use game_library::Attribute;
let mut attribute = Attribute::new(10_u32);
assert_eq!(attribute.current, 10_u32);
assert_eq!(attribute.max, 10_u32);
attribute.set_max(5_u32);
assert_eq!(attribute.current, 5_u32);
assert_eq!(attribute.max, 5_u32);
attribute.set_max(10_u32);
assert_eq!(attribute.current, 5_u32);
assert_eq!(attribute.max, 10_u32);
Trait Implementations§
source§impl AddAssign<f32> for Attribute
impl AddAssign<f32> for Attribute
source§fn add_assign(&mut self, rhs: f32)
fn add_assign(&mut self, rhs: f32)
+=
operation. Read moresource§impl AddAssign<f64> for Attribute
impl AddAssign<f64> for Attribute
source§fn add_assign(&mut self, rhs: f64)
fn add_assign(&mut self, rhs: f64)
+=
operation. Read moresource§impl AddAssign<i32> for Attribute
impl AddAssign<i32> for Attribute
source§fn add_assign(&mut self, rhs: i32)
fn add_assign(&mut self, rhs: i32)
+=
operation. Read moresource§impl AddAssign<u32> for Attribute
impl AddAssign<u32> for Attribute
source§fn add_assign(&mut self, rhs: u32)
fn add_assign(&mut self, rhs: u32)
+=
operation. Read moresource§impl AddAssign for Attribute
impl AddAssign for Attribute
source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
+=
operation. Read moresource§impl<'de> Deserialize<'de> for Attribute
impl<'de> Deserialize<'de> for Attribute
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>,
source§impl DivAssign<f32> for Attribute
impl DivAssign<f32> for Attribute
source§fn div_assign(&mut self, rhs: f32)
fn div_assign(&mut self, rhs: f32)
/=
operation. Read moresource§impl DivAssign<f64> for Attribute
impl DivAssign<f64> for Attribute
source§fn div_assign(&mut self, rhs: f64)
fn div_assign(&mut self, rhs: f64)
/=
operation. Read moresource§impl DivAssign<i32> for Attribute
impl DivAssign<i32> for Attribute
source§fn div_assign(&mut self, rhs: i32)
fn div_assign(&mut self, rhs: i32)
/=
operation. Read moresource§impl DivAssign<u32> for Attribute
impl DivAssign<u32> for Attribute
source§fn div_assign(&mut self, rhs: u32)
fn div_assign(&mut self, rhs: u32)
/=
operation. Read moresource§impl DivAssign for Attribute
impl DivAssign for Attribute
source§fn div_assign(&mut self, rhs: Self)
fn div_assign(&mut self, rhs: Self)
/=
operation. Read moresource§impl FromReflect for Attributewhere
u32: FromReflect + TypePath,
impl FromReflect for Attributewhere
u32: FromReflect + TypePath,
source§fn from_reflect(reflect: &dyn Reflect) -> Option<Self>
fn from_reflect(reflect: &dyn Reflect) -> Option<Self>
Self
from a reflected value.§fn take_from_reflect(
reflect: Box<dyn Reflect>
) -> Result<Self, Box<dyn Reflect>>
fn take_from_reflect( reflect: Box<dyn Reflect> ) -> Result<Self, Box<dyn Reflect>>
Self
using,
constructing the value using from_reflect
if that fails. Read moresource§impl GetTypeRegistration for Attributewhere
u32: FromReflect + TypePath,
impl GetTypeRegistration for Attributewhere
u32: FromReflect + TypePath,
fn get_type_registration() -> TypeRegistration
source§impl MulAssign<f32> for Attribute
impl MulAssign<f32> for Attribute
source§fn mul_assign(&mut self, rhs: f32)
fn mul_assign(&mut self, rhs: f32)
*=
operation. Read moresource§impl MulAssign<f64> for Attribute
impl MulAssign<f64> for Attribute
source§fn mul_assign(&mut self, rhs: f64)
fn mul_assign(&mut self, rhs: f64)
*=
operation. Read moresource§impl MulAssign<i32> for Attribute
impl MulAssign<i32> for Attribute
source§fn mul_assign(&mut self, rhs: i32)
fn mul_assign(&mut self, rhs: i32)
*=
operation. Read moresource§impl MulAssign<u32> for Attribute
impl MulAssign<u32> for Attribute
source§fn mul_assign(&mut self, rhs: u32)
fn mul_assign(&mut self, rhs: u32)
*=
operation. Read moresource§impl MulAssign for Attribute
impl MulAssign for Attribute
source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
*=
operation. Read moresource§impl Ord for Attribute
impl Ord for Attribute
source§impl PartialEq for Attribute
impl PartialEq for Attribute
source§impl PartialOrd for Attribute
impl PartialOrd for Attribute
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl Percentage for Attribute
impl Percentage for Attribute
source§fn percentage(&self) -> f32
fn percentage(&self) -> f32
source§impl Reflect for Attributewhere
u32: FromReflect + TypePath,
impl Reflect for Attributewhere
u32: FromReflect + TypePath,
source§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
TypeInfo
] of the type represented by this value. Read moresource§fn as_any_mut(&mut self) -> &mut dyn Any
fn as_any_mut(&mut self) -> &mut dyn Any
&mut dyn Any
.source§fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
fn into_reflect(self: Box<Self>) -> Box<dyn Reflect>
source§fn as_reflect(&self) -> &dyn Reflect
fn as_reflect(&self) -> &dyn Reflect
source§fn as_reflect_mut(&mut self) -> &mut dyn Reflect
fn as_reflect_mut(&mut self) -> &mut dyn Reflect
source§fn clone_value(&self) -> Box<dyn Reflect>
fn clone_value(&self) -> Box<dyn Reflect>
Reflect
trait object. Read moresource§fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>
fn set(&mut self, value: Box<dyn Reflect>) -> Result<(), Box<dyn Reflect>>
source§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
source§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
source§fn reflect_owned(self: Box<Self>) -> ReflectOwned
fn reflect_owned(self: Box<Self>) -> ReflectOwned
source§fn reflect_partial_eq(&self, value: &dyn Reflect) -> Option<bool>
fn reflect_partial_eq(&self, value: &dyn Reflect) -> Option<bool>
§fn type_name(&self) -> &str
fn type_name(&self) -> &str
§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
§fn serializable(&self) -> Option<Serializable<'_>>
fn serializable(&self) -> Option<Serializable<'_>>
§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
source§impl Struct for Attributewhere
u32: FromReflect + TypePath,
impl Struct for Attributewhere
u32: FromReflect + TypePath,
source§fn field(&self, name: &str) -> Option<&dyn Reflect>
fn field(&self, name: &str) -> Option<&dyn Reflect>
name
as a &dyn Reflect
.source§fn field_mut(&mut self, name: &str) -> Option<&mut dyn Reflect>
fn field_mut(&mut self, name: &str) -> Option<&mut dyn Reflect>
name
as a
&mut dyn Reflect
.source§fn field_at(&self, index: usize) -> Option<&dyn Reflect>
fn field_at(&self, index: usize) -> Option<&dyn Reflect>
index
as a
&dyn Reflect
.source§fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn Reflect>
fn field_at_mut(&mut self, index: usize) -> Option<&mut dyn Reflect>
index
as a &mut dyn Reflect
.source§fn name_at(&self, index: usize) -> Option<&str>
fn name_at(&self, index: usize) -> Option<&str>
index
.source§fn iter_fields(&self) -> FieldIter<'_>
fn iter_fields(&self) -> FieldIter<'_>
source§fn clone_dynamic(&self) -> DynamicStruct
fn clone_dynamic(&self) -> DynamicStruct
DynamicStruct
].source§impl SubAssign<f32> for Attribute
impl SubAssign<f32> for Attribute
source§fn sub_assign(&mut self, rhs: f32)
fn sub_assign(&mut self, rhs: f32)
-=
operation. Read moresource§impl SubAssign<f64> for Attribute
impl SubAssign<f64> for Attribute
source§fn sub_assign(&mut self, rhs: f64)
fn sub_assign(&mut self, rhs: f64)
-=
operation. Read moresource§impl SubAssign<i32> for Attribute
impl SubAssign<i32> for Attribute
source§fn sub_assign(&mut self, rhs: i32)
fn sub_assign(&mut self, rhs: i32)
-=
operation. Read moresource§impl SubAssign<u32> for Attribute
impl SubAssign<u32> for Attribute
source§fn sub_assign(&mut self, rhs: u32)
fn sub_assign(&mut self, rhs: u32)
-=
operation. Read moresource§impl SubAssign for Attribute
impl SubAssign for Attribute
source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
-=
operation. Read moresource§impl TypePath for Attributewhere
u32: FromReflect + TypePath,
impl TypePath for Attributewhere
u32: FromReflect + TypePath,
source§fn type_path() -> &'static str
fn type_path() -> &'static str
source§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
source§fn type_ident() -> Option<&'static str>
fn type_ident() -> Option<&'static str>
source§fn crate_name() -> Option<&'static str>
fn crate_name() -> Option<&'static str>
impl Copy for Attribute
impl Eq for Attribute
impl Resource for Attribute
Auto Trait Implementations§
impl RefUnwindSafe for Attribute
impl Send for Attribute
impl Sync for Attribute
impl Unpin for Attribute
impl UnwindSafe for Attribute
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
[ShaderType
] for self
. When used in [AsBindGroup
]
derives, it is safe to assume that all images in self
exist.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
§impl<C> Bundle for Cwhere
C: Component,
impl<C> Bundle for Cwhere
C: Component,
fn component_ids( components: &mut Components, storages: &mut Storages, ids: &mut impl FnMut(ComponentId) )
unsafe fn from_components<T, F>(ctx: &mut T, func: &mut F) -> C
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> DynEq for T
impl<T> DynEq for T
§impl<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere
T: TypePath,
§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
TypePath::type_path
].§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
TypePath::short_type_path
].§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
TypePath::type_ident
].§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
TypePath::crate_name
].§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
TypePath::module_path
].§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given [World
].§impl<S> GetField for Swhere
S: Struct,
impl<S> GetField for Swhere
S: Struct,
§impl<T> GetPath for Twhere
T: Reflect + ?Sized,
impl<T> GetPath for Twhere
T: Reflect + ?Sized,
§fn reflect_path<'p>(
&self,
path: impl ReflectPath<'p>
) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path<'p>( &self, path: impl ReflectPath<'p> ) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§fn reflect_path_mut<'p>(
&mut self,
path: impl ReflectPath<'p>
) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p> ) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
path
. Read more§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
source§impl<T> Serialize for T
impl<T> Serialize for T
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>
fn do_erased_serialize( &self, serializer: &mut dyn Serializer ) -> Result<(), ErrorImpl>
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.