From 01f3451869f56dc0651d8cd30bf8540aeb462c04 Mon Sep 17 00:00:00 2001 From: Richard Carson Date: Tue, 12 Nov 2024 12:49:49 -0500 Subject: chore: make fields public on `PermissionDeniedError` and `deno_kv::KvConfig` (#26798) A few small changes to avoid needing unsafe mem transmutes to instantiate the extensions --------- Signed-off-by: Richard Carson --- runtime/permissions/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'runtime') diff --git a/runtime/permissions/lib.rs b/runtime/permissions/lib.rs index 3aa5aabb3..71ef7d228 100644 --- a/runtime/permissions/lib.rs +++ b/runtime/permissions/lib.rs @@ -40,8 +40,8 @@ pub use prompter::PromptResponse; #[derive(Debug, thiserror::Error)] #[error("Requires {access}, {}", format_permission_error(.name))] pub struct PermissionDeniedError { - access: String, - name: &'static str, + pub access: String, + pub name: &'static str, } fn format_permission_error(name: &'static str) -> String { -- cgit v1.2.3