pub enum PythonModuleBytecodeProvider {
Provided(FileData),
FromSource(FileData),
}
Expand description
Describes how Python module bytecode will be obtained.
Variants§
Provided(FileData)
Bytecode is already available.
FromSource(FileData)
Bytecode will be computed from source.
Trait Implementations§
Source§impl Clone for PythonModuleBytecodeProvider
impl Clone for PythonModuleBytecodeProvider
Source§fn clone(&self) -> PythonModuleBytecodeProvider
fn clone(&self) -> PythonModuleBytecodeProvider
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PythonModuleBytecodeProvider
impl Debug for PythonModuleBytecodeProvider
Source§impl PartialEq for PythonModuleBytecodeProvider
impl PartialEq for PythonModuleBytecodeProvider
Source§fn eq(&self, other: &PythonModuleBytecodeProvider) -> bool
fn eq(&self, other: &PythonModuleBytecodeProvider) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PythonModuleBytecodeProvider
Auto Trait Implementations§
impl Freeze for PythonModuleBytecodeProvider
impl RefUnwindSafe for PythonModuleBytecodeProvider
impl Send for PythonModuleBytecodeProvider
impl Sync for PythonModuleBytecodeProvider
impl Unpin for PythonModuleBytecodeProvider
impl UnwindSafe for PythonModuleBytecodeProvider
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more