pub struct InspectReadyQV1Request {
pub queue_name: String,
pub include_scheduled_queues: bool,
}Expand description
Query parameters for the inspect-ready-q endpoint.
{{since(‘dev’)}}
Fields§
§queue_name: StringThe name of the ready queue to inspect.
include_scheduled_queues: boolWhen true, the response includes the list of scheduled queue names that have promoted messages into this ready queue. Walking the set is bounded but proportional to the number of live scheduled queues, so the field is opt-in.
Trait Implementations§
Source§impl ApplyToUrl for InspectReadyQV1Request
impl ApplyToUrl for InspectReadyQV1Request
fn apply_to_url(&self, url: &mut Url)
Source§impl ComposeSchema for InspectReadyQV1Request
impl ComposeSchema for InspectReadyQV1Request
Source§impl Debug for InspectReadyQV1Request
impl Debug for InspectReadyQV1Request
Source§impl<'de> Deserialize<'de> for InspectReadyQV1Request
impl<'de> Deserialize<'de> for InspectReadyQV1Request
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 IntoParams for InspectReadyQV1Request
impl IntoParams for InspectReadyQV1Request
Source§impl Serialize for InspectReadyQV1Request
impl Serialize for InspectReadyQV1Request
Auto Trait Implementations§
impl Freeze for InspectReadyQV1Request
impl RefUnwindSafe for InspectReadyQV1Request
impl Send for InspectReadyQV1Request
impl Sync for InspectReadyQV1Request
impl Unpin for InspectReadyQV1Request
impl UnwindSafe for InspectReadyQV1Request
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