pub struct ReadSurfaceInteractionQuery {
pub target_provider_id: Option<String>,
pub timeout_seconds: Option<u16>,
pub page: Option<u64>,
pub per_page: Option<u64>,
}Expand description
Query parameters for GET-origin surface interaction invocation.
Documentation-only: the handler reads raw query pairs (to support
undeclared provider-defined keys) rather than deserializing through this
struct directly. It exists purely to drive the OpenAPI params(...)
declaration (ADR-0025) for the method-mapped REST route family: reserved
keys (page/per_page) coerce to numbers; target_provider_id and
timeout_seconds are envelope keys stripped before provider dispatch and
never reach provider params.
Fields§
§target_provider_id: Option<String>Explicit provider to target; required for multi-provider surfaces.
timeout_seconds: Option<u16>Overrides the provider’s default timeout, in seconds.
page: Option<u64>Reserved typed key — coerced to a JSON number.
per_page: Option<u64>Reserved typed key — coerced to a JSON number.
Trait Implementations§
Source§impl Clone for ReadSurfaceInteractionQuery
impl Clone for ReadSurfaceInteractionQuery
Source§fn clone(&self) -> ReadSurfaceInteractionQuery
fn clone(&self) -> ReadSurfaceInteractionQuery
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 ReadSurfaceInteractionQuery
impl Debug for ReadSurfaceInteractionQuery
Source§impl<'de> Deserialize<'de> for ReadSurfaceInteractionQuery
impl<'de> Deserialize<'de> for ReadSurfaceInteractionQuery
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
Auto Trait Implementations§
impl Freeze for ReadSurfaceInteractionQuery
impl RefUnwindSafe for ReadSurfaceInteractionQuery
impl Send for ReadSurfaceInteractionQuery
impl Sync for ReadSurfaceInteractionQuery
impl Unpin for ReadSurfaceInteractionQuery
impl UnsafeUnpin for ReadSurfaceInteractionQuery
impl UnwindSafe for ReadSurfaceInteractionQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more