Struct micro_ldtk::SpatialIndex
source · pub struct SpatialIndex(_, _);Trait Implementations§
source§impl Clone for SpatialIndex
impl Clone for SpatialIndex
source§fn clone(&self) -> SpatialIndex
fn clone(&self) -> SpatialIndex
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 SpatialIndex
impl Debug for SpatialIndex
source§impl<'de> Deserialize<'de> for SpatialIndex
impl<'de> Deserialize<'de> for SpatialIndex
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>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<A, B> From<(A, B)> for SpatialIndexwhere
A: AsPrimitive<i64>,
B: AsPrimitive<i64>,
impl<A, B> From<(A, B)> for SpatialIndexwhere A: AsPrimitive<i64>, B: AsPrimitive<i64>,
source§impl From<IVec2> for SpatialIndex
impl From<IVec2> for SpatialIndex
source§impl From<UVec2> for SpatialIndex
impl From<UVec2> for SpatialIndex
source§impl Hash for SpatialIndex
impl Hash for SpatialIndex
source§impl Ord for SpatialIndex
impl Ord for SpatialIndex
source§fn cmp(&self, other: &SpatialIndex) -> Ordering
fn cmp(&self, other: &SpatialIndex) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<SpatialIndex> for SpatialIndex
impl PartialEq<SpatialIndex> for SpatialIndex
source§fn eq(&self, other: &SpatialIndex) -> bool
fn eq(&self, other: &SpatialIndex) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<SpatialIndex> for SpatialIndex
impl PartialOrd<SpatialIndex> for SpatialIndex
source§fn partial_cmp(&self, other: &SpatialIndex) -> Option<Ordering>
fn partial_cmp(&self, other: &SpatialIndex) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl Serialize for SpatialIndex
impl Serialize for SpatialIndex
impl Copy for SpatialIndex
impl Eq for SpatialIndex
impl StructuralEq for SpatialIndex
impl StructuralPartialEq for SpatialIndex
Auto Trait Implementations§
impl RefUnwindSafe for SpatialIndex
impl Send for SpatialIndex
impl Sync for SpatialIndex
impl Unpin for SpatialIndex
impl UnwindSafe for SpatialIndex
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for Twhere
U: ShaderType,
&'a T: for<'a> Into<U>,
impl<T, U> AsBindGroupShaderType<U> for Twhere U: ShaderType, &'a T: for<'a> Into<U>,
§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> 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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
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)
Convert
&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)
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.