pub enum AllowRunDescriptorParseResult {
Unresolved(Box<Error>),
Descriptor(AllowRunDescriptor),
}
Variants§
Unresolved(Box<Error>)
An error occured getting the descriptor that should be surfaced as a warning when launching deno, but should be ignored when creating a worker.
Descriptor(AllowRunDescriptor)
Auto Trait Implementations§
impl Freeze for AllowRunDescriptorParseResult
impl RefUnwindSafe for AllowRunDescriptorParseResult
impl Send for AllowRunDescriptorParseResult
impl Sync for AllowRunDescriptorParseResult
impl Unpin for AllowRunDescriptorParseResult
impl UnwindSafe for AllowRunDescriptorParseResult
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