pub enum LauncherKind {
Script,
Python,
}Expand description
The kind of trampoline launcher to create.
See [uv-trampoline::bounce::TrampolineKind].
Variants§
Script
The trampoline should execute itself, it’s a zipped Python script.
Python
The trampoline should just execute Python, it’s a proxy Python executable.
Trait Implementations§
Source§impl Clone for LauncherKind
impl Clone for LauncherKind
Source§fn clone(&self) -> LauncherKind
fn clone(&self) -> LauncherKind
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 LauncherKind
impl Debug for LauncherKind
Source§impl PartialEq for LauncherKind
impl PartialEq for LauncherKind
impl Copy for LauncherKind
impl Eq for LauncherKind
impl StructuralPartialEq for LauncherKind
Auto Trait Implementations§
impl Freeze for LauncherKind
impl RefUnwindSafe for LauncherKind
impl Send for LauncherKind
impl Sync for LauncherKind
impl Unpin for LauncherKind
impl UnsafeUnpin for LauncherKind
impl UnwindSafe for LauncherKind
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