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

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

Mesh attribute data.

This stores unique values shared among mesh elements via smart pointers. This type doesn’t store the location of the attribute.

Implementations

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.

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

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

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

Construct a new attribute with the same values and 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. The output HDataVec must be composed of values from the original HDataVec or the default element.

The init function is only allowed to clone data from the second argument into the first. Adding new data will cause this attribute to go out of sync with the cache.

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

Produce an iterator over the underlying data elements.

Iterate over all the value in this attribute and update them as needed.

This function takes a closure which takes an index and a smart pointer to the stored value and produces an optional new value. The new value is then used to update the attribute using the provided cache.

Set the value of a particular element.

Set the value of a particular element.

Push a value onto the underlying data buffer.

Produce a slice to the underlying data referenced by smart pointers.

Produce a mutable slice to the underlying data referenced by smart pointers.

Get a reference to the default element.

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.