pub struct ExternalAdapterHostResolutionFrame {
pub schema: ExternalAdapterHostResolutionSchema,
pub protocol_version: ExternalAdapterProtocolVersion,
pub frame_id: NonEmptyString,
pub invocation_id: NonEmptyString,
pub adapter_id: NonEmptyString,
pub request: ResolutionRequest,
pub requested_at: IsoDateTime,
}Fields§
§schema: ExternalAdapterHostResolutionSchema§protocol_version: ExternalAdapterProtocolVersion§frame_id: NonEmptyString§invocation_id: NonEmptyString§adapter_id: NonEmptyString§request: ResolutionRequest§requested_at: IsoDateTimeTrait Implementations§
Source§impl Clone for ExternalAdapterHostResolutionFrame
impl Clone for ExternalAdapterHostResolutionFrame
Source§fn clone(&self) -> ExternalAdapterHostResolutionFrame
fn clone(&self) -> ExternalAdapterHostResolutionFrame
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<'de> Deserialize<'de> for ExternalAdapterHostResolutionFrame
impl<'de> Deserialize<'de> for ExternalAdapterHostResolutionFrame
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 ExternalAdapterHostResolutionFrame
impl PartialEq for ExternalAdapterHostResolutionFrame
Source§fn eq(&self, other: &ExternalAdapterHostResolutionFrame) -> bool
fn eq(&self, other: &ExternalAdapterHostResolutionFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RunxSchema for ExternalAdapterHostResolutionFrame
impl RunxSchema for ExternalAdapterHostResolutionFrame
Source§fn json_schema() -> Value
fn json_schema() -> Value
The inlined JSON Schema for this type.
impl StructuralPartialEq for ExternalAdapterHostResolutionFrame
Auto Trait Implementations§
impl Freeze for ExternalAdapterHostResolutionFrame
impl RefUnwindSafe for ExternalAdapterHostResolutionFrame
impl Send for ExternalAdapterHostResolutionFrame
impl Sync for ExternalAdapterHostResolutionFrame
impl Unpin for ExternalAdapterHostResolutionFrame
impl UnsafeUnpin for ExternalAdapterHostResolutionFrame
impl UnwindSafe for ExternalAdapterHostResolutionFrame
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