pub struct ShapeHandle<'a> { /* private fields */ }Expand description
Geometry node handle (shape).
Implementations§
Source§impl<'a> ShapeHandle<'a>
impl<'a> ShapeHandle<'a>
Sourcepub fn blendshape_channel(&self) -> Result<BlendShapeChannelHandle<'a>, Error>
pub fn blendshape_channel(&self) -> Result<BlendShapeChannelHandle<'a>, Error>
Returns the parant subdeformer blendshapechannel.
Methods from Deref<Target = ObjectHandle<'a>>§
Sourcepub fn object_node_id(&self) -> ObjectNodeId
pub fn object_node_id(&self) -> ObjectNodeId
Returns object node ID.
Sourcepub fn node(&self) -> NodeHandle<'a>
pub fn node(&self) -> NodeHandle<'a>
Returns the node handle.
Sourcepub fn get_typed(&self) -> TypedObjectHandle<'a>
pub fn get_typed(&self) -> TypedObjectHandle<'a>
Returns the object type.
Sourcepub fn destination_objects(
&self,
) -> impl Iterator<Item = ConnectedObjectHandle<'a>>
pub fn destination_objects( &self, ) -> impl Iterator<Item = ConnectedObjectHandle<'a>>
Returns an iterator of destination objects and connection labels.
Sourcepub fn source_objects(&self) -> impl Iterator<Item = ConnectedObjectHandle<'a>>
pub fn source_objects(&self) -> impl Iterator<Item = ConnectedObjectHandle<'a>>
Returns an iterator of source objects and connection labels.
Sourcepub fn direct_properties(&self) -> Option<PropertiesHandle<'a>>
pub fn direct_properties(&self) -> Option<PropertiesHandle<'a>>
Returns a handle of the directly associated properties node.
Sourcepub fn properties_by_native_typename(
&self,
native_typename: &str,
) -> ObjectProperties<'a>
pub fn properties_by_native_typename( &self, native_typename: &str, ) -> ObjectProperties<'a>
Returns a proxy to object properties using the given native typename.
native_typename should be the value of the first attribute of
the PropertyTemplate node to be used.
Trait Implementations§
Source§impl<'a> Clone for ShapeHandle<'a>
impl<'a> Clone for ShapeHandle<'a>
Source§fn clone(&self) -> ShapeHandle<'a>
fn clone(&self) -> ShapeHandle<'a>
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<'a> Debug for ShapeHandle<'a>
impl<'a> Debug for ShapeHandle<'a>
Source§impl<'a> Deref for ShapeHandle<'a>
impl<'a> Deref for ShapeHandle<'a>
impl<'a> Copy for ShapeHandle<'a>
Auto Trait Implementations§
impl<'a> Freeze for ShapeHandle<'a>
impl<'a> RefUnwindSafe for ShapeHandle<'a>
impl<'a> Send for ShapeHandle<'a>
impl<'a> Sync for ShapeHandle<'a>
impl<'a> Unpin for ShapeHandle<'a>
impl<'a> UnwindSafe for ShapeHandle<'a>
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