struct StartRunRequest<'a> {
metadata: MetadataPayload<'a>,
host: &'a HostInfo,
cloud: &'a CloudInfo,
}Expand description
Python register_run sends a flat dict merging metadata, host_info, and
cloud_info. #[serde(flatten)] on all three fields reproduces that shape.
Fields§
§metadata: MetadataPayload<'a>§host: &'a HostInfo§cloud: &'a CloudInfoTrait Implementations§
Source§impl<'a> Debug for StartRunRequest<'a>
impl<'a> Debug for StartRunRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for StartRunRequest<'a>
impl<'a> RefUnwindSafe for StartRunRequest<'a>
impl<'a> Send for StartRunRequest<'a>
impl<'a> Sync for StartRunRequest<'a>
impl<'a> Unpin for StartRunRequest<'a>
impl<'a> UnsafeUnpin for StartRunRequest<'a>
impl<'a> UnwindSafe for StartRunRequest<'a>
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