Struct gut::mesh::attrib::DirectData[][src]

pub struct DirectData { /* fields omitted */ }
Expand description

Attribute data stored directly with each associated element.

This type doesn’t store the location of the attribute.

Implementations

This type wraps a DataVec to store attribute data.

Get the type data stored within this attribute

Get the mutable typed data stored within this attribute

Get the type data stored within this attribute

Get the number of bytes per element stored in this attribute.

Number of elements stored by this attribute. This is the same as the number of elements in the associated topology.

Number of bytes stored by this attribute. This is the same as the number of elements multiplied by the size of each element.

Check if there are any values in this attribute.

Get a const reference to the i’th attribute value.

Safety

Calling this method with an out-of-bounds index is undefined behavior even if the output is not used. For a safe alternative use the get_ref method.

Get a mutable reference to the i’th attribute value.

Safety

Calling this method with an out-of-bounds index is undefined behavior even if the output is not used. For a safe alternative use the get_mut method.

Get a reference to the internal value vector.

Get a mutable reference to the internal value vector.

Convert this attribute into the underlying buffer. This consumes the attribute.

Extend this attribute by n elements. Effectively, this function appends the default element n number of times to this attribute.

Rotates elements of this attribute in-place to the left.

Rotate this attribute in-place such that the first mid elements of the underlying buffer move to the end while the last self.len() - mid elements move to the front. After calling rotate_left, the element previously at index mid will become the first element in the slice.

Rotates elements of this attribute in-place to the right.

Rotate this attribute in-place such that the first self.len() - k elements of the underlying buffer move to the end while the last k elements move to the front. After calling rotate_right, the element previously at index self.len() - k will become the first element in the slice.

Construct an attribute with a given size.

Construct an attribute from a given Vec<T> of data reusing the space already allocated by the Vec.

Construct an attribute from a given DataVec of data reusing the space already allocated.

Safety

The given def must be a valid binary representation of an element stored in the given DataVec.

Construct an attribute from a given slice of data, by copying the data.

Construct a new empty attribute with the same buffer type and default element as self.

Construct a new attribute with the same buffer type and default element as self.

The data within the newly created attribute is expected to be initialized with the given function init, which takes the output DataVec for the new attribute and the existing DataSlice from self.

Construct a new attribute with the same buffer type, default element as self.

The attribute is first initialized with the default value by allocating len default elements. Then the newly created buffer is expected to be modified by the init function.

Produce a slice to the underlying data.

Produce a mutable slice to the underlying data.

Convert the data stored by this attribute into a vector of the same size.

Push a value onto the underlying data buffer.

Produce an iterator over the underlying data elements.

Produce a mutable iterator over the underlying data elements.

Convert this attribute into a typed vector of T. This consumes the attribute.

Get a reference to the defult element as a byte slice.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Get a slice of bytes representing Self.

Panics if the size of the given bytes slice is not equal to the size of Self.

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. Read more

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more

Performs the conversion.

Return a value at the given index. This is provided as the checked version of get that will panic if the equivalent get call is None, which typically means that the given index is out of bounds. Read more

Return a value at the given index. This is provided as the unchecked version of get that has undefined behavior when the index is out of bounds. Read more

Performs the conversion.

Return a value at the given index. This is provided as the checked version of try_isolate that will panic if the equivalent try_isolate call is None, which typically means that the given index is out of bounds. Read more

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

This method tells this type how it can be pushed to a Vec as an array.

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.