#[non_exhaustive]pub enum RdSystemMacroOrigin {
CuratedTag,
UserMacroExpansion,
}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.
Trait Implementations§
Source§impl Clone for RdSystemMacroOrigin
impl Clone for RdSystemMacroOrigin
Source§fn clone(&self) -> RdSystemMacroOrigin
fn clone(&self) -> RdSystemMacroOrigin
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 RdSystemMacroOrigin
Source§impl Debug for RdSystemMacroOrigin
impl Debug for RdSystemMacroOrigin
impl Eq for RdSystemMacroOrigin
Source§impl PartialEq for RdSystemMacroOrigin
impl PartialEq for RdSystemMacroOrigin
impl StructuralPartialEq for RdSystemMacroOrigin
Auto Trait Implementations§
impl Freeze for RdSystemMacroOrigin
impl RefUnwindSafe for RdSystemMacroOrigin
impl Send for RdSystemMacroOrigin
impl Sync for RdSystemMacroOrigin
impl Unpin for RdSystemMacroOrigin
impl UnsafeUnpin for RdSystemMacroOrigin
impl UnwindSafe for RdSystemMacroOrigin
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