pub enum CompassHalfwinds {
Show 16 variants
N,
NNE,
NE,
ENE,
E,
ESE,
SE,
SSE,
S,
SSW,
SW,
WSW,
W,
WNW,
NW,
NNW,
}Expand description
A 16 direction compass component
Variants§
N
North
NNE
North-by-North-East
NE
North-east
ENE
East-by-North-East
E
East
ESE
East-by-South-East
SE
South-east
SSE
South-by-South-East
S
South
SSW
South-by-South-West
SW
South-west
WSW
West-by-South-West
W
West
WNW
West-by-North-West
NW
North-west
NNW
North-by-North-West
Trait Implementations§
Source§impl Clone for CompassHalfwinds
impl Clone for CompassHalfwinds
Source§fn clone(&self) -> CompassHalfwinds
fn clone(&self) -> CompassHalfwinds
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Component for CompassHalfwinds
impl Component for CompassHalfwinds
Source§const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
const STORAGE_TYPE: StorageType = bevy::ecs::component::StorageType::Table
A constant indicating the storage type used for this component.
Source§fn register_component_hooks(_hooks: &mut ComponentHooks)
fn register_component_hooks(_hooks: &mut ComponentHooks)
Called when registering this component, allowing mutable access to its
ComponentHooks.impl Copy for CompassHalfwinds
Source§impl Debug for CompassHalfwinds
impl Debug for CompassHalfwinds
Source§impl Default for CompassHalfwinds
impl Default for CompassHalfwinds
Source§fn default() -> CompassHalfwinds
fn default() -> CompassHalfwinds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompassHalfwinds
impl<'de> Deserialize<'de> for CompassHalfwinds
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompassHalfwinds, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CompassHalfwinds, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Enum for CompassHalfwinds
impl Enum for CompassHalfwinds
Source§fn field(&self, __name_param: &str) -> Option<&(dyn Reflect + 'static)>
fn field(&self, __name_param: &str) -> Option<&(dyn Reflect + 'static)>
Returns a reference to the value of the field (in the current variant) with the given name. Read more
Source§fn field_at(&self, __index_param: usize) -> Option<&(dyn Reflect + 'static)>
fn field_at(&self, __index_param: usize) -> Option<&(dyn Reflect + 'static)>
Returns a reference to the value of the field (in the current variant) at the given index.
Source§fn field_mut(
&mut self,
__name_param: &str,
) -> Option<&mut (dyn Reflect + 'static)>
fn field_mut( &mut self, __name_param: &str, ) -> Option<&mut (dyn Reflect + 'static)>
Returns a mutable reference to the value of the field (in the current variant) with the given name. Read more
Source§fn field_at_mut(
&mut self,
__index_param: usize,
) -> Option<&mut (dyn Reflect + 'static)>
fn field_at_mut( &mut self, __index_param: usize, ) -> Option<&mut (dyn Reflect + 'static)>
Returns a mutable reference to the value of the field (in the current variant) at the given index.
Source§fn index_of(&self, __name_param: &str) -> Option<usize>
fn index_of(&self, __name_param: &str) -> Option<usize>
Returns the index of the field (in the current variant) with the given name. Read more
Source§fn name_at(&self, __index_param: usize) -> Option<&str>
fn name_at(&self, __index_param: usize) -> Option<&str>
Returns the name of the field (in the current variant) with the given index. Read more
Source§fn iter_fields(&self) -> VariantFieldIter<'_>
fn iter_fields(&self) -> VariantFieldIter<'_>
Returns an iterator over the values of the current variant’s fields.
Source§fn variant_name(&self) -> &str
fn variant_name(&self) -> &str
The name of the current variant.
Source§fn variant_index(&self) -> usize
fn variant_index(&self) -> usize
The index of the current variant.
Source§fn variant_type(&self) -> VariantType
fn variant_type(&self) -> VariantType
The type of the current variant.
fn clone_dynamic(&self) -> DynamicEnum
Source§fn is_variant(&self, variant_type: VariantType) -> bool
fn is_variant(&self, variant_type: VariantType) -> bool
Returns true if the current variant’s type matches the given one.
Source§fn variant_path(&self) -> String
fn variant_path(&self) -> String
Returns the full path to the current variant.
impl Eq for CompassHalfwinds
Source§impl From<&Compass> for CompassHalfwinds
impl From<&Compass> for CompassHalfwinds
Source§fn from(compass_cardinal: &Compass) -> CompassHalfwinds
fn from(compass_cardinal: &Compass) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<&CompassHalfwinds> for Vec2
impl From<&CompassHalfwinds> for Vec2
Source§fn from(compass: &CompassHalfwinds) -> Vec2
fn from(compass: &CompassHalfwinds) -> Vec2
Converts to this type from the input type.
Source§impl From<&CompassHalfwinds> for Degrees
impl From<&CompassHalfwinds> for Degrees
Source§fn from(compass_halfwinds: &CompassHalfwinds) -> Degrees
fn from(compass_halfwinds: &CompassHalfwinds) -> Degrees
Converts to this type from the input type.
Source§impl From<&CompassHalfwinds> for Radians
impl From<&CompassHalfwinds> for Radians
Source§fn from(compass_halfwinds: &CompassHalfwinds) -> Radians
fn from(compass_halfwinds: &CompassHalfwinds) -> Radians
Converts to this type from the input type.
Source§impl From<&CompassHalfwinds> for Rotation2D
impl From<&CompassHalfwinds> for Rotation2D
Source§fn from(compass_halfwinds: &CompassHalfwinds) -> Rotation2D
fn from(compass_halfwinds: &CompassHalfwinds) -> Rotation2D
Converts to this type from the input type.
Source§impl From<&CompassRose> for CompassHalfwinds
impl From<&CompassRose> for CompassHalfwinds
Source§fn from(compass_cardinal: &CompassRose) -> CompassHalfwinds
fn from(compass_cardinal: &CompassRose) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<&Degrees> for CompassHalfwinds
impl From<&Degrees> for CompassHalfwinds
Source§fn from(degrees: &Degrees) -> CompassHalfwinds
fn from(degrees: &Degrees) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<&Radians> for CompassHalfwinds
impl From<&Radians> for CompassHalfwinds
Source§fn from(radians: &Radians) -> CompassHalfwinds
fn from(radians: &Radians) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<&Rotation2D> for CompassHalfwinds
impl From<&Rotation2D> for CompassHalfwinds
Source§fn from(rotation: &Rotation2D) -> CompassHalfwinds
fn from(rotation: &Rotation2D) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<Compass> for CompassHalfwinds
impl From<Compass> for CompassHalfwinds
Source§fn from(compass_cardinal: Compass) -> CompassHalfwinds
fn from(compass_cardinal: Compass) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<CompassHalfwinds> for Vec2
impl From<CompassHalfwinds> for Vec2
Source§fn from(compass: CompassHalfwinds) -> Vec2
fn from(compass: CompassHalfwinds) -> Vec2
Converts to this type from the input type.
Source§impl From<CompassHalfwinds> for Degrees
impl From<CompassHalfwinds> for Degrees
Source§fn from(compass_halfwinds: CompassHalfwinds) -> Degrees
fn from(compass_halfwinds: CompassHalfwinds) -> Degrees
Converts to this type from the input type.
Source§impl From<CompassHalfwinds> for Radians
impl From<CompassHalfwinds> for Radians
Source§fn from(compass_halfwinds: CompassHalfwinds) -> Radians
fn from(compass_halfwinds: CompassHalfwinds) -> Radians
Converts to this type from the input type.
Source§impl From<CompassHalfwinds> for Rotation2D
impl From<CompassHalfwinds> for Rotation2D
Source§fn from(compass_halfwinds: CompassHalfwinds) -> Rotation2D
fn from(compass_halfwinds: CompassHalfwinds) -> Rotation2D
Converts to this type from the input type.
Source§impl From<CompassRose> for CompassHalfwinds
impl From<CompassRose> for CompassHalfwinds
Source§fn from(compass_cardinal: CompassRose) -> CompassHalfwinds
fn from(compass_cardinal: CompassRose) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<Degrees> for CompassHalfwinds
impl From<Degrees> for CompassHalfwinds
Source§fn from(degrees: Degrees) -> CompassHalfwinds
fn from(degrees: Degrees) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<Radians> for CompassHalfwinds
impl From<Radians> for CompassHalfwinds
Source§fn from(radians: Radians) -> CompassHalfwinds
fn from(radians: Radians) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl From<Rotation2D> for CompassHalfwinds
impl From<Rotation2D> for CompassHalfwinds
Source§fn from(rotation: Rotation2D) -> CompassHalfwinds
fn from(rotation: Rotation2D) -> CompassHalfwinds
Converts to this type from the input type.
Source§impl FromReflect for CompassHalfwinds
impl FromReflect for CompassHalfwinds
Source§fn from_reflect(__param0: &(dyn Reflect + 'static)) -> Option<CompassHalfwinds>
fn from_reflect(__param0: &(dyn Reflect + 'static)) -> Option<CompassHalfwinds>
Constructs a concrete instance of
Self from a reflected value.Source§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>>
Attempts to downcast the given value to
Self using,
constructing the value using from_reflect if that fails. Read moreSource§impl GetTypeRegistration for CompassHalfwinds
impl GetTypeRegistration for CompassHalfwinds
Source§fn get_type_registration() -> TypeRegistration
fn get_type_registration() -> TypeRegistration
Returns the default
TypeRegistration for this type.Source§fn register_type_dependencies(registry: &mut TypeRegistry)
fn register_type_dependencies(registry: &mut TypeRegistry)
Registers other types needed by this type. Read more
Source§impl Hash for CompassHalfwinds
impl Hash for CompassHalfwinds
Source§impl PartialEq for CompassHalfwinds
impl PartialEq for CompassHalfwinds
Source§fn eq(&self, other: &CompassHalfwinds) -> bool
fn eq(&self, other: &CompassHalfwinds) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Random for CompassHalfwinds
impl Random for CompassHalfwinds
Source§fn random() -> CompassHalfwinds
fn random() -> CompassHalfwinds
Generate a random number
Source§impl Reflect for CompassHalfwinds
impl Reflect for CompassHalfwinds
Source§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
Source§fn into_any(self: Box<CompassHalfwinds>) -> Box<dyn Any>
fn into_any(self: Box<CompassHalfwinds>) -> Box<dyn Any>
Returns the value as a
Box<dyn Any>.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Returns the value as a
&mut dyn Any.Source§fn into_reflect(self: Box<CompassHalfwinds>) -> Box<dyn Reflect>
fn into_reflect(self: Box<CompassHalfwinds>) -> Box<dyn Reflect>
Casts this type to a boxed reflected value.
Source§fn as_reflect(&self) -> &(dyn Reflect + 'static)
fn as_reflect(&self) -> &(dyn Reflect + 'static)
Casts this type to a reflected value.
Source§fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
Casts this type to a mutable reflected value.
Source§fn clone_value(&self) -> Box<dyn Reflect>
fn clone_value(&self) -> Box<dyn Reflect>
Clones the value as a
Reflect trait object. Read moreSource§fn set(
&mut self,
__value_param: Box<dyn Reflect>,
) -> Result<(), Box<dyn Reflect>>
fn set( &mut self, __value_param: Box<dyn Reflect>, ) -> Result<(), Box<dyn Reflect>>
Performs a type-checked assignment of a reflected value to this value. Read more
Source§fn try_apply(
&mut self,
__value_param: &(dyn Reflect + 'static),
) -> Result<(), ApplyError>
fn try_apply( &mut self, __value_param: &(dyn Reflect + 'static), ) -> Result<(), ApplyError>
Source§fn reflect_kind(&self) -> ReflectKind
fn reflect_kind(&self) -> ReflectKind
Returns a zero-sized enumeration of “kinds” of type. Read more
Source§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
Returns an immutable enumeration of “kinds” of type. Read more
Source§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
Returns a mutable enumeration of “kinds” of type. Read more
Source§fn reflect_owned(self: Box<CompassHalfwinds>) -> ReflectOwned
fn reflect_owned(self: Box<CompassHalfwinds>) -> ReflectOwned
Returns an owned enumeration of “kinds” of type. Read more
Source§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
Returns a hash of the value (which includes the type). Read more
Source§fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
Returns a “partial equality” comparison result. Read more
Source§fn apply(&mut self, value: &(dyn Reflect + 'static))
fn apply(&mut self, value: &(dyn Reflect + 'static))
Applies a reflected value to this value. Read more
Source§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Debug formatter for the value. Read more
Source§fn serializable(&self) -> Option<Serializable<'_>>
fn serializable(&self) -> Option<Serializable<'_>>
Returns a serializable version of the value. Read more
Source§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
Indicates whether or not this type is a dynamic type. Read more
Source§impl Serialize for CompassHalfwinds
impl Serialize for CompassHalfwinds
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CompassHalfwinds
Source§impl TypePath for CompassHalfwinds
impl TypePath for CompassHalfwinds
Source§fn type_path() -> &'static str
fn type_path() -> &'static str
Returns the fully qualified path of the underlying type. Read more
Source§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
Returns a short, pretty-print enabled path to the type. Read more
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>
Auto Trait Implementations§
impl Freeze for CompassHalfwinds
impl RefUnwindSafe for CompassHalfwinds
impl Send for CompassHalfwinds
impl Sync for CompassHalfwinds
impl Unpin for CompassHalfwinds
impl UnsafeUnpin for CompassHalfwinds
impl UnwindSafe for CompassHalfwinds
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
Return the
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
Mutably borrows from an owned value. Read more
Source§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
Source§fn get_component_ids(
components: &Components,
ids: &mut impl FnMut(Option<ComponentId>),
)
fn get_component_ids( components: &Components, ids: &mut impl FnMut(Option<ComponentId>), )
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> ConditionalSend for Twhere
T: Send,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
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.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<S, T> Duplex<S> for Twhere
T: FromSample<S> + ToSample<S>,
Source§impl<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
Source§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere
T: TypePath,
Source§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
See
TypePath::type_path.Source§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
Source§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
See
TypePath::type_ident.Source§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
See
TypePath::crate_name.Source§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self using data from the given World.Source§impl<T> GetPath for T
impl<T> GetPath for T
Source§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>>
Returns a reference to the value specified by
path. Read moreSource§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>>
Returns a mutable reference to the value specified by
path. Read moreSource§fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
Returns a statically typed reference to the value specified by
path. Read moreSource§fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
Returns a statically typed mutable reference to the value specified by
path. Read more