#[repr(u8)]pub enum Target {
Register = 0,
ForeachItem = 1,
ForeachIndex = 2,
Range = 3,
}Available on crate feature
rt only.Expand description
The type of variable pointed to by Path.
Variants§
Register = 0
Target is animation register.
ForeachItem = 1
Target is item variable returns by foreach iterator.
ForeachIndex = 2
Target is index variable returns by foreach iterator.
Range = 3
Target is index variable returns by for range iterator.
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
Source§impl PartialOrd for Target
impl PartialOrd for Target
impl Copy for Target
impl StructuralPartialEq for Target
Auto Trait Implementations§
impl Freeze for Target
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