pub struct CustomModelData {
pub floats: PrefixedArray<Float>,
pub flags: PrefixedArray<bool>,
pub strings: PrefixedArray<String>,
pub colors: PrefixedArray<Int>,
}Fields§
§floats: PrefixedArray<Float>§flags: PrefixedArray<bool>§strings: PrefixedArray<String>§colors: PrefixedArray<Int>Implementations§
Source§impl CustomModelData
impl CustomModelData
pub fn new( floats: PrefixedArray<Float>, flags: PrefixedArray<bool>, strings: PrefixedArray<String>, colors: PrefixedArray<Int>, ) -> Self
Trait Implementations§
Source§impl Clone for CustomModelData
impl Clone for CustomModelData
Source§fn clone(&self) -> CustomModelData
fn clone(&self) -> CustomModelData
Returns a duplicate 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 CustomModelData
impl Debug for CustomModelData
Source§impl Field for CustomModelData
impl Field for CustomModelData
Auto Trait Implementations§
impl Freeze for CustomModelData
impl RefUnwindSafe for CustomModelData
impl Send for CustomModelData
impl Sync for CustomModelData
impl Unpin for CustomModelData
impl UnwindSafe for CustomModelData
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