pub struct SparseU32List {
pub segments: Vec<SparseSegment>,
}Fields§
§segments: Vec<SparseSegment>Compressed segments of the original list
Implementations§
Source§impl SparseU32List
impl SparseU32List
Trait Implementations§
Source§impl Clone for SparseU32List
impl Clone for SparseU32List
Source§fn clone(&self) -> SparseU32List
fn clone(&self) -> SparseU32List
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 Debug for SparseU32List
impl Debug for SparseU32List
Source§impl Default for SparseU32List
impl Default for SparseU32List
Source§fn default() -> SparseU32List
fn default() -> SparseU32List
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SparseU32List
impl<'de> Deserialize<'de> for SparseU32List
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
impl Eq for SparseU32List
Source§impl PartialEq for SparseU32List
impl PartialEq for SparseU32List
Source§fn eq(&self, other: &SparseU32List) -> bool
fn eq(&self, other: &SparseU32List) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SparseU32List
impl Serialize for SparseU32List
impl StructuralPartialEq for SparseU32List
Auto Trait Implementations§
impl Freeze for SparseU32List
impl RefUnwindSafe for SparseU32List
impl Send for SparseU32List
impl Sync for SparseU32List
impl Unpin for SparseU32List
impl UnsafeUnpin for SparseU32List
impl UnwindSafe for SparseU32List
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
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<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<T> FromTemplate for T
impl<T> FromTemplate for T
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 default().
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.
Source§impl<T> Template for T
impl<T> Template for T
Source§fn build_template(
&self,
_context: &mut TemplateContext<'_, '_>,
) -> Result<<T as Template>::Output, BevyError>
fn build_template( &self, _context: &mut TemplateContext<'_, '_>, ) -> Result<<T as Template>::Output, BevyError>
Uses this template and the given
entity context to produce a Template::Output.Source§fn clone_template(&self) -> T
fn clone_template(&self) -> T
Clones this template. See
Clone.