pub struct TranslatedArgs {
pub deno_args: Vec<String>,
pub node_options: Vec<String>,
pub use_system_ca: bool,
}Expand description
Result of translating Node.js CLI args to Deno args
Fields§
§deno_args: Vec<String>The Deno CLI arguments
node_options: Vec<String>Node options that should be added to NODE_OPTIONS env var
use_system_ca: boolWhether to set DENO_TLS_CA_STORE=system
Trait Implementations§
Source§impl Clone for TranslatedArgs
impl Clone for TranslatedArgs
Source§fn clone(&self) -> TranslatedArgs
fn clone(&self) -> TranslatedArgs
Returns a duplicate of the value. Read more
1.0.0 · 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 TranslatedArgs
impl Debug for TranslatedArgs
Source§impl Default for TranslatedArgs
impl Default for TranslatedArgs
Source§fn default() -> TranslatedArgs
fn default() -> TranslatedArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TranslatedArgs
impl RefUnwindSafe for TranslatedArgs
impl Send for TranslatedArgs
impl Sync for TranslatedArgs
impl Unpin for TranslatedArgs
impl UnsafeUnpin for TranslatedArgs
impl UnwindSafe for TranslatedArgs
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