pub struct InspectReadyQV1Response {
pub queue_name: String,
pub mx: Option<MxResolution>,
pub egress_source: String,
pub egress_pool: String,
pub protocol: String,
pub state: ReadyQueueStateSnapshot,
pub path_config: EgressPathConfig,
pub constraints: EffectiveConstraints,
pub scheduled_queue_names: Option<Vec<String>>,
pub dispatchers: Vec<DispatcherSummary>,
pub now: DateTime<Utc>,
}Expand description
Response body for the inspect-ready-q endpoint.
{{since(‘dev’)}}
Fields§
§queue_name: String§mx: Option<MxResolution>MX resolution result for the destination. None for
protocols that don’t use MX (e.g. Lua-protocol queues) or
when MX resolution wasn’t applicable.
egress_source: String§egress_pool: String§protocol: StringProtocol identifier as it appears in the ready queue name.
state: ReadyQueueStateSnapshot§path_config: EgressPathConfigSnapshot of the egress path configuration in effect for this queue.
constraints: EffectiveConstraintsSteady-state throughput ceilings implied by path_config.
Each axis is tagged with the configuration term that
produced it, so operators can tell whether a plateau in the
observed rate is the result of shaping configuration or the
remote side.
scheduled_queue_names: Option<Vec<String>>Scheduled queue names that currently feed this ready queue.
Populated only when the request’s include_scheduled_queues
flag is true; otherwise None.
dispatchers: Vec<DispatcherSummary>§now: DateTime<Utc>Trait Implementations§
Source§impl ComposeSchema for InspectReadyQV1Response
impl ComposeSchema for InspectReadyQV1Response
Source§impl Debug for InspectReadyQV1Response
impl Debug for InspectReadyQV1Response
Source§impl<'de> Deserialize<'de> for InspectReadyQV1Response
impl<'de> Deserialize<'de> for InspectReadyQV1Response
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 Serialize for InspectReadyQV1Response
impl Serialize for InspectReadyQV1Response
Source§impl<'__r> ToResponse<'__r> for InspectReadyQV1Response
impl<'__r> ToResponse<'__r> for InspectReadyQV1Response
Auto Trait Implementations§
impl Freeze for InspectReadyQV1Response
impl !RefUnwindSafe for InspectReadyQV1Response
impl Send for InspectReadyQV1Response
impl Sync for InspectReadyQV1Response
impl Unpin for InspectReadyQV1Response
impl !UnwindSafe for InspectReadyQV1Response
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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