pub struct AttributeInfo(/* private fields */);
Implementations§
Source§impl AttributeInfo
impl AttributeInfo
pub fn exists(&self) -> bool
pub fn original_owner(&self) -> AttributeOwner
pub fn total_array_elements(&self) -> i64
pub fn set_total_array_elements(&mut self, val: i64)
pub fn with_total_array_elements(self, val: i64) -> Self
pub fn owner(&self) -> AttributeOwner
pub fn set_owner(&mut self, val: AttributeOwner)
pub fn with_owner(self, val: AttributeOwner) -> Self
pub fn storage(&self) -> StorageType
pub fn set_storage(&mut self, val: StorageType)
pub fn with_storage(self, val: StorageType) -> Self
pub fn tuple_size(&self) -> i32
pub fn set_tuple_size(&mut self, val: i32)
pub fn with_tuple_size(self, val: i32) -> Self
pub fn type_info(&self) -> AttributeTypeInfo
pub fn set_type_info(&mut self, val: AttributeTypeInfo)
pub fn with_type_info(self, val: AttributeTypeInfo) -> Self
pub fn count(&self) -> i32
pub fn set_count(&mut self, val: i32)
pub fn with_count(self, val: i32) -> Self
pub fn ptr(&self) -> *const HAPI_AttributeInfo
Trait Implementations§
Source§impl Clone for AttributeInfo
impl Clone for AttributeInfo
Source§fn clone(&self) -> AttributeInfo
fn clone(&self) -> AttributeInfo
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 AttributeInfo
impl Debug for AttributeInfo
Auto Trait Implementations§
impl Freeze for AttributeInfo
impl RefUnwindSafe for AttributeInfo
impl Send for AttributeInfo
impl Sync for AttributeInfo
impl Unpin for AttributeInfo
impl UnwindSafe for AttributeInfo
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