pub enum DependencyMode {
Local,
Registry,
}Expand description
Controls whether generated e2e test projects reference the package under
test via a local path (for development) or a registry version string
(for standalone test_apps that consumers can run without the monorepo).
Variants§
Local
Local path dependency (default) — used during normal e2e development.
Registry
Registry dependency — generates standalone test apps that pull the package from its published registry (PyPI, npm, crates.io, etc.).
Trait Implementations§
Source§impl Clone for DependencyMode
impl Clone for DependencyMode
Source§fn clone(&self) -> DependencyMode
fn clone(&self) -> DependencyMode
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 DependencyMode
impl Debug for DependencyMode
Source§impl Default for DependencyMode
impl Default for DependencyMode
Source§fn default() -> DependencyMode
fn default() -> DependencyMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DependencyMode
impl<'de> Deserialize<'de> for DependencyMode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DependencyMode
impl PartialEq for DependencyMode
Source§impl Serialize for DependencyMode
impl Serialize for DependencyMode
impl Copy for DependencyMode
impl Eq for DependencyMode
impl StructuralPartialEq for DependencyMode
Auto Trait Implementations§
impl Freeze for DependencyMode
impl RefUnwindSafe for DependencyMode
impl Send for DependencyMode
impl Sync for DependencyMode
impl Unpin for DependencyMode
impl UnsafeUnpin for DependencyMode
impl UnwindSafe for DependencyMode
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