pub struct PythonBuildSystem;Implementations§
Source§impl PythonBuildSystem
impl PythonBuildSystem
pub fn new() -> Self
pub async fn configure( &self, _request: &BuildRequest, _environment: &BuildEnvironment, ) -> Result<BuildStepResult, RezCoreError>
pub async fn compile( &self, _request: &BuildRequest, _environment: &BuildEnvironment, _child_process: Arc<Mutex<Option<Child>>>, ) -> Result<BuildStepResult, RezCoreError>
pub async fn test( &self, _request: &BuildRequest, _environment: &BuildEnvironment, _child_process: Arc<Mutex<Option<Child>>>, ) -> Result<BuildStepResult, RezCoreError>
pub async fn package( &self, _request: &BuildRequest, _environment: &BuildEnvironment, ) -> Result<BuildStepResult, RezCoreError>
pub async fn install( &self, _request: &BuildRequest, _environment: &BuildEnvironment, ) -> Result<BuildStepResult, RezCoreError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PythonBuildSystem
impl RefUnwindSafe for PythonBuildSystem
impl Send for PythonBuildSystem
impl Sync for PythonBuildSystem
impl Unpin for PythonBuildSystem
impl UnwindSafe for PythonBuildSystem
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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