pub struct RuntimeResponseV3Preview {
pub request_id: String,
pub api_version: u32,
pub runtime_identity: IdentityV3,
pub model_generation: u64,
pub state_generation: u64,
pub response: RuntimeResponseBodyV3Preview,
}Expand description
Additive response surface for the opt-in Preview subprocess. The original
RuntimeResponseV3 remains frozen; this type carries channel, health and
decision metadata without changing its public enum variants.
Fields§
§request_id: String§api_version: u32§runtime_identity: IdentityV3§model_generation: u64§state_generation: u64§response: RuntimeResponseBodyV3PreviewTrait Implementations§
Source§impl Clone for RuntimeResponseV3Preview
impl Clone for RuntimeResponseV3Preview
Source§fn clone(&self) -> RuntimeResponseV3Preview
fn clone(&self) -> RuntimeResponseV3Preview
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 moreSource§impl Debug for RuntimeResponseV3Preview
impl Debug for RuntimeResponseV3Preview
Source§impl<'de> Deserialize<'de> for RuntimeResponseV3Preview
impl<'de> Deserialize<'de> for RuntimeResponseV3Preview
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RuntimeResponseV3Preview
impl PartialEq for RuntimeResponseV3Preview
Source§impl Serialize for RuntimeResponseV3Preview
impl Serialize for RuntimeResponseV3Preview
impl StructuralPartialEq for RuntimeResponseV3Preview
Auto Trait Implementations§
impl Freeze for RuntimeResponseV3Preview
impl RefUnwindSafe for RuntimeResponseV3Preview
impl Send for RuntimeResponseV3Preview
impl Sync for RuntimeResponseV3Preview
impl Unpin for RuntimeResponseV3Preview
impl UnsafeUnpin for RuntimeResponseV3Preview
impl UnwindSafe for RuntimeResponseV3Preview
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