#[non_exhaustive]pub enum CompilationSource {
CompilationResult(String),
WorkflowConfig(String),
}Expand description
The source of the compilation result to use for this invocation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
CompilationResult(String)
Immutable. The name of the compilation result to use for this invocation.
Must be in the format
projects/*/locations/*/repositories/*/compilationResults/*.
WorkflowConfig(String)
Immutable. The name of the workflow config to invoke. Must be in the
format projects/*/locations/*/repositories/*/workflowConfigs/*.
Trait Implementations§
Source§impl Clone for CompilationSource
impl Clone for CompilationSource
Source§fn clone(&self) -> CompilationSource
fn clone(&self) -> CompilationSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CompilationSource
impl Debug for CompilationSource
Source§impl PartialEq for CompilationSource
impl PartialEq for CompilationSource
impl StructuralPartialEq for CompilationSource
Auto Trait Implementations§
impl Freeze for CompilationSource
impl RefUnwindSafe for CompilationSource
impl Send for CompilationSource
impl Sync for CompilationSource
impl Unpin for CompilationSource
impl UnwindSafe for CompilationSource
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