pub enum RemoteProgram {
Executable(OsString),
SupervisorPython,
}Expand description
Program identity is distinct from argv. Built-in scripts reuse the already
selected supervisor interpreter, never another PATH lookup for python3.
Variants§
Trait Implementations§
Source§impl Clone for RemoteProgram
impl Clone for RemoteProgram
Source§fn clone(&self) -> RemoteProgram
fn clone(&self) -> RemoteProgram
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RemoteProgram
impl RefUnwindSafe for RemoteProgram
impl Send for RemoteProgram
impl Sync for RemoteProgram
impl Unpin for RemoteProgram
impl UnsafeUnpin for RemoteProgram
impl UnwindSafe for RemoteProgram
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