pub struct PythonLayout {
pub payload_root: &'static str,
pub entry_point: &'static str,
pub scripts_directory: &'static str,
pub executable_suffix: &'static str,
pub launcher_kind: &'static str,
}Expand description
Layout of the interpreter inside an extracted box.
Fields§
§payload_root: &'static strDirectory the packed prefix was relocated into.
entry_point: &'static strInterpreter path, relative to the box root.
scripts_directory: &'static strDirectory holding console scripts.
executable_suffix: &'static strSuffix an executable carries on this platform.
launcher_kind: &'static strFrozen wire string naming how launchers were repaired.
Trait Implementations§
Source§impl Clone for PythonLayout
impl Clone for PythonLayout
Source§fn clone(&self) -> PythonLayout
fn clone(&self) -> PythonLayout
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 moreimpl Copy for PythonLayout
Source§impl Debug for PythonLayout
impl Debug for PythonLayout
impl Eq for PythonLayout
Source§impl PartialEq for PythonLayout
impl PartialEq for PythonLayout
impl StructuralPartialEq for PythonLayout
Auto Trait Implementations§
impl Freeze for PythonLayout
impl RefUnwindSafe for PythonLayout
impl Send for PythonLayout
impl Sync for PythonLayout
impl Unpin for PythonLayout
impl UnsafeUnpin for PythonLayout
impl UnwindSafe for PythonLayout
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.