#[non_exhaustive]pub enum SandboxType {
BubbleWrap,
}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.
BubbleWrap
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SandboxType
impl RefUnwindSafe for SandboxType
impl Send for SandboxType
impl Sync for SandboxType
impl Unpin for SandboxType
impl UnsafeUnpin for SandboxType
impl UnwindSafe for SandboxType
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