pub struct DeployedAgent {
pub deployment: AgentDeployment,
pub version: AgentDeploymentVersion,
pub secret_id: Option<String>,
}Expand description
The result of AgentDeploymentResource::create.
Fields§
§deployment: AgentDeploymentThe deployment that was created.
version: AgentDeploymentVersionThe version created, and auto-activated, for this deploy.
secret_id: Option<String>The env-secret id, when env was provided.
Trait Implementations§
Source§impl Clone for DeployedAgent
impl Clone for DeployedAgent
Source§fn clone(&self) -> DeployedAgent
fn clone(&self) -> DeployedAgent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeployedAgent
impl RefUnwindSafe for DeployedAgent
impl Send for DeployedAgent
impl Sync for DeployedAgent
impl Unpin for DeployedAgent
impl UnsafeUnpin for DeployedAgent
impl UnwindSafe for DeployedAgent
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