pub enum ValueShape {
Bool,
Int,
Float,
String,
Script,
StringArray,
FloatTuple(u8),
IntTuple(u8),
NodeName,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for ValueShape
impl Clone for ValueShape
Source§fn clone(&self) -> ValueShape
fn clone(&self) -> ValueShape
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 ValueShape
impl Debug for ValueShape
Source§impl PartialEq for ValueShape
impl PartialEq for ValueShape
impl Copy for ValueShape
impl Eq for ValueShape
impl StructuralPartialEq for ValueShape
Auto Trait Implementations§
impl Freeze for ValueShape
impl RefUnwindSafe for ValueShape
impl Send for ValueShape
impl Sync for ValueShape
impl Unpin for ValueShape
impl UnsafeUnpin for ValueShape
impl UnwindSafe for ValueShape
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