#[non_exhaustive]pub enum LoweringSource {
Preset,
Configuration,
ExactRust,
}Expand description
Where one effective mechanical projection value came from.
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.
Preset
The projector’s documented conventional spelling.
Configuration
A named recipe seat replaced the conventional spelling.
ExactRust
Exact caller-authored Rust replaced the conventional mechanical seat.
Implementations§
Trait Implementations§
Source§impl Clone for LoweringSource
impl Clone for LoweringSource
Source§fn clone(&self) -> LoweringSource
fn clone(&self) -> LoweringSource
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 LoweringSource
Source§impl Debug for LoweringSource
impl Debug for LoweringSource
impl Eq for LoweringSource
Source§impl Hash for LoweringSource
impl Hash for LoweringSource
Source§impl PartialEq for LoweringSource
impl PartialEq for LoweringSource
impl StructuralPartialEq for LoweringSource
Auto Trait Implementations§
impl Freeze for LoweringSource
impl RefUnwindSafe for LoweringSource
impl Send for LoweringSource
impl Sync for LoweringSource
impl Unpin for LoweringSource
impl UnsafeUnpin for LoweringSource
impl UnwindSafe for LoweringSource
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