#[non_exhaustive]pub enum ScaleSourceRestField {
Translation,
Rotation,
Scale,
MatrixLinear,
MatrixTranslation,
MatrixHomogeneous,
}Expand description
One authored source-node rest field or component group.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Translation
TRS translation.
Rotation
TRS rotation.
Scale
TRS scale.
MatrixLinear
Matrix linear columns.
MatrixTranslation
Matrix translation column.
MatrixHomogeneous
Matrix homogeneous row.
Trait Implementations§
Source§impl Clone for ScaleSourceRestField
impl Clone for ScaleSourceRestField
Source§fn clone(&self) -> ScaleSourceRestField
fn clone(&self) -> ScaleSourceRestField
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ScaleSourceRestField
Source§impl Debug for ScaleSourceRestField
impl Debug for ScaleSourceRestField
impl Eq for ScaleSourceRestField
Source§impl PartialEq for ScaleSourceRestField
impl PartialEq for ScaleSourceRestField
impl StructuralPartialEq for ScaleSourceRestField
Auto Trait Implementations§
impl Freeze for ScaleSourceRestField
impl RefUnwindSafe for ScaleSourceRestField
impl Send for ScaleSourceRestField
impl Sync for ScaleSourceRestField
impl Unpin for ScaleSourceRestField
impl UnsafeUnpin for ScaleSourceRestField
impl UnwindSafe for ScaleSourceRestField
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