pub struct Target {
pub extensions: Option<Target>,
pub extras: Extras,
pub node: Index<Node>,
pub path: Checked<Property>,
}
Expand description
The index of the node and TRS property that an animation channel targets.
Fields§
§extensions: Option<Target>
Extension specific data.
extras: Extras
Optional application specific data.
node: Index<Node>
The index of the node to target.
path: Checked<Property>
The name of the node’s property to modify or the ‘weights’ of the morph targets it instantiates.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Target
impl<'de> Deserialize<'de> for Target
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl RefUnwindSafe for Target
impl Send for Target
impl Sync for Target
impl Unpin for Target
impl UnwindSafe for Target
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