pub struct VertexAiCodeExecutorConfig {
pub project: String,
pub location: String,
pub timeout_secs: u64,
}Expand description
Configuration for Vertex AI code execution.
Fields§
§project: StringGoogle Cloud project ID.
location: StringGoogle Cloud location (e.g., “us-central1”).
timeout_secs: u64Execution timeout in seconds.
Trait Implementations§
Source§impl Clone for VertexAiCodeExecutorConfig
impl Clone for VertexAiCodeExecutorConfig
Source§fn clone(&self) -> VertexAiCodeExecutorConfig
fn clone(&self) -> VertexAiCodeExecutorConfig
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 moreAuto Trait Implementations§
impl Freeze for VertexAiCodeExecutorConfig
impl RefUnwindSafe for VertexAiCodeExecutorConfig
impl Send for VertexAiCodeExecutorConfig
impl Sync for VertexAiCodeExecutorConfig
impl Unpin for VertexAiCodeExecutorConfig
impl UnsafeUnpin for VertexAiCodeExecutorConfig
impl UnwindSafe for VertexAiCodeExecutorConfig
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