#[non_exhaustive]pub enum AssemblyScaleNamedSelectorResolutionError {
RootNotUnique {
matches: usize,
},
SkinNotUnique {
matches: usize,
},
}Expand description
Why a named assembly scale selector did not resolve exactly once.
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.
RootNotUnique
The exact normalized name matched zero or multiple source nodes.
SkinNotUnique
The resolved root fully governed zero or multiple source skins.
Trait Implementations§
Source§impl Clone for AssemblyScaleNamedSelectorResolutionError
impl Clone for AssemblyScaleNamedSelectorResolutionError
Source§fn clone(&self) -> AssemblyScaleNamedSelectorResolutionError
fn clone(&self) -> AssemblyScaleNamedSelectorResolutionError
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 AssemblyScaleNamedSelectorResolutionError
impl Eq for AssemblyScaleNamedSelectorResolutionError
Source§impl Error for AssemblyScaleNamedSelectorResolutionError
impl Error for AssemblyScaleNamedSelectorResolutionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl StructuralPartialEq for AssemblyScaleNamedSelectorResolutionError
Auto Trait Implementations§
impl Freeze for AssemblyScaleNamedSelectorResolutionError
impl RefUnwindSafe for AssemblyScaleNamedSelectorResolutionError
impl Send for AssemblyScaleNamedSelectorResolutionError
impl Sync for AssemblyScaleNamedSelectorResolutionError
impl Unpin for AssemblyScaleNamedSelectorResolutionError
impl UnsafeUnpin for AssemblyScaleNamedSelectorResolutionError
impl UnwindSafe for AssemblyScaleNamedSelectorResolutionError
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