#[non_exhaustive]pub enum StashDynamicBoundaryKind {
DynamicStashMutation,
DynamicExportDeclaration,
Autoload,
}Expand description
Dynamic stash boundary category.
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.
DynamicStashMutation
Stash/typeglob assignment with a non-static RHS.
DynamicExportDeclaration
Export declaration has a non-static member list or tag shape.
Autoload
AUTOLOAD makes method lookup dynamic for this package.
Trait Implementations§
Source§impl Clone for StashDynamicBoundaryKind
impl Clone for StashDynamicBoundaryKind
Source§fn clone(&self) -> StashDynamicBoundaryKind
fn clone(&self) -> StashDynamicBoundaryKind
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 moreSource§impl Debug for StashDynamicBoundaryKind
impl Debug for StashDynamicBoundaryKind
Source§impl Hash for StashDynamicBoundaryKind
impl Hash for StashDynamicBoundaryKind
Source§impl PartialEq for StashDynamicBoundaryKind
impl PartialEq for StashDynamicBoundaryKind
Source§fn eq(&self, other: &StashDynamicBoundaryKind) -> bool
fn eq(&self, other: &StashDynamicBoundaryKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StashDynamicBoundaryKind
impl Eq for StashDynamicBoundaryKind
impl StructuralPartialEq for StashDynamicBoundaryKind
Auto Trait Implementations§
impl Freeze for StashDynamicBoundaryKind
impl RefUnwindSafe for StashDynamicBoundaryKind
impl Send for StashDynamicBoundaryKind
impl Sync for StashDynamicBoundaryKind
impl Unpin for StashDynamicBoundaryKind
impl UnsafeUnpin for StashDynamicBoundaryKind
impl UnwindSafe for StashDynamicBoundaryKind
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