pub enum Step {
Show 34 variants Invocation(Invocation), CompileSwift(CompileSwift), CompileSwiftSources(CompileSwiftSources), CompileC(CompileC), CodeSign(CodeSign), CompileAssetCatalog(CompileAssetCatalog), CompileStoryboard(CompileStoryboard), CompileXIB(CompileXIB), Ld(Ld), CopySwiftLibs(CopySwiftLibs), CopyResource(CopyResource), CreateBuildDirectory(CreateBuildDirectory), GenerateDSYMFile(GenerateDSYMFile), LinkStoryboards(LinkStoryboards), ScriptExecution(ScriptExecution), PrecompileSwiftBridgingHeader(PrecompileSwiftBridgingHeader), ProcessInfoPlistFile(ProcessInfoPlistFile), ProcessProductPackaging(ProcessProductPackaging), ResolvedSourcePackages(ResolvedSourcePackages), Validate(Validate), LibTool, Note(String), Planning, MergeSwiftModule(MergeSwiftModule), EmitSwiftModule(EmitSwiftModule), BuildSucceed, BuildFailed(BuildFailed), CleanSucceed, TestSucceed, TestFailed, Error(String), Warning(String), Exit(i32), RegisterWithLaunchServices(RegisterWithLaunchServices),
}

Variants

Invocation(Invocation)

Command invocated

CompileSwift(CompileSwift)

Swift file compilation step

CompileSwiftSources(CompileSwiftSources)

Aggregated swift files compilation

CompileC(CompileC)

Clang compilation step

CodeSign(CodeSign)

Code Sign Step

CompileAssetCatalog(CompileAssetCatalog)

Asset’s catalog compilation

CompileStoryboard(CompileStoryboard)

Storyboard compilation

CompileXIB(CompileXIB)

Xib file compilation

Ld(Ld)

Linking of a library

CopySwiftLibs(CopySwiftLibs)

Swift Runtime was copied

CopyResource(CopyResource)

Resource file was copied

CreateBuildDirectory(CreateBuildDirectory)

Build Directory Creation Step

GenerateDSYMFile(GenerateDSYMFile)

DSM File Generation Step

LinkStoryboards(LinkStoryboards)

Storyboard linked

ScriptExecution(ScriptExecution)

Build phase shell script execution

PrecompileSwiftBridgingHeader(PrecompileSwiftBridgingHeader)

Precompile Bridging header

ProcessInfoPlistFile(ProcessInfoPlistFile)

Info plist process step

ProcessProductPackaging(ProcessProductPackaging)

Packaging step

ResolvedSourcePackages(ResolvedSourcePackages)

Packaging step

Validate(Validate)

Validate app

LibTool

TODO: Libtool was used to create a static library

Note(String)

General Note emitted

Planning

Planning phase

MergeSwiftModule(MergeSwiftModule)

Swift Module was merged

EmitSwiftModule(EmitSwiftModule)

Swift Module was emitted

BuildSucceed

Build Succeeded

BuildFailed(BuildFailed)

Build Failed

CleanSucceed

Clean Succeeded

TestSucceed

Test Succeeded

TestFailed

Test Failed

Error(String)

Error from stderr or error:

Warning(String)

Error from warning:

Exit(i32)

Exit Code

RegisterWithLaunchServices(RegisterWithLaunchServices)

Register Launch Services

Implementations

Returns true if the step is Invocation.

Returns true if the step is CompileSwift.

Returns true if the step is CompileSwiftSources.

Returns true if the step is CompileC.

Returns true if the step is CodeSign.

Returns true if the step is CompileStoryboard.

Returns true if the step is CompileXIB.

Returns true if the step is Ld.

Returns true if the step is CopySwiftLibs.

Returns true if the step is CopyResource.

Returns true if the step is CreateBuildDirectory.

Returns true if the step is GenerateDSYMFile.

Returns true if the step is LinkStoryboards.

Returns true if the step is ScriptExecution.

Returns true if the step is PrecompileSwiftBridgingHeader.

Returns true if the step is ProcessInfoPlistFile.

Returns true if the step is ProcessProductPackaging.

Returns true if the step is ResolvedSourcePackages.

Returns true if the step is Validate.

Returns true if the step is LibTool.

Returns true if the step is Note.

Returns true if the step is MergeSwiftModule.

Returns true if the step is EmitSwiftModule.

Returns true if the step is build successed

Returns true if the step is failed

Returns true if the step is Exit.

Returns true if the step is Warning.

Returns true if the step is Error.

Trait Implementations

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Converts self into T using Into<T>. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Pipes by value. This is generally the method you want to use. Read more

Borrows self and passes that borrow into the pipe function. Read more

Mutably borrows self and passes that borrow into the pipe function. Read more

Borrows self, then passes self.borrow() into the pipe function. Read more

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more

Borrows self, then passes self.as_ref() into the pipe function.

Mutably borrows self, then passes self.as_mut() into the pipe function. Read more

Borrows self, then passes self.deref() into the pipe function.

Mutably borrows self, then passes self.deref_mut() into the pipe function. Read more

Immutable access to a value. Read more

Mutable access to a value. Read more

Immutable access to the Borrow<B> of a value. Read more

Mutable access to the BorrowMut<B> of a value. Read more

Immutable access to the AsRef<R> view of a value. Read more

Mutable access to the AsMut<R> view of a value. Read more

Immutable access to the Deref::Target of a value. Read more

Mutable access to the Deref::Target of a value. Read more

Calls .tap() only in debug builds, and is erased in release builds.

Calls .tap_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_borrow() only in debug builds, and is erased in release builds. Read more

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_ref() only in debug builds, and is erased in release builds. Read more

Calls .tap_ref_mut() only in debug builds, and is erased in release builds. Read more

Calls .tap_deref() only in debug builds, and is erased in release builds. Read more

Calls .tap_deref_mut() only in debug builds, and is erased in release builds. Read more

Converts the given value to a String. Read more

Attempts to convert self into T using TryInto<T>. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more