pub struct ResolvedExecutionContext {
pub runtime_instance_id: RuntimeInstanceId,
pub agent_id: String,
pub runtime_type: String,
pub model: String,
pub workspace_id: WorkspaceId,
pub package_id: String,
pub package_version: String,
pub package_digest: Option<String>,
pub metadata: BTreeMap<String, String>,
}Fields§
§runtime_instance_id: RuntimeInstanceId§agent_id: String§runtime_type: String§model: String§workspace_id: WorkspaceId§package_id: String§package_version: String§package_digest: Option<String>§metadata: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for ResolvedExecutionContext
impl Clone for ResolvedExecutionContext
Source§fn clone(&self) -> ResolvedExecutionContext
fn clone(&self) -> ResolvedExecutionContext
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 ResolvedExecutionContext
impl RefUnwindSafe for ResolvedExecutionContext
impl Send for ResolvedExecutionContext
impl Sync for ResolvedExecutionContext
impl Unpin for ResolvedExecutionContext
impl UnsafeUnpin for ResolvedExecutionContext
impl UnwindSafe for ResolvedExecutionContext
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