#[non_exhaustive]pub struct EnqueueOptions<'a> {
pub ordering_key: Option<&'a str>,
}Expand description
Options specific to one enqueue call (contract §4 #9): the application-supplied
ordering_key, which is deliberately not part of Metadata (§22.2).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.ordering_key: Option<&'a str>The ordering-strategy key this message belongs to. None (the default) means
unordered.
Implementations§
Source§impl<'a> EnqueueOptions<'a>
impl<'a> EnqueueOptions<'a>
Sourcepub const fn ordering_key(self, key: &'a str) -> Self
pub const fn ordering_key(self, key: &'a str) -> Self
Sets Self::ordering_key. #[non_exhaustive] forbids struct-literal construction
outside this crate, so this is the only way to set a non-default value.
Trait Implementations§
Source§impl<'a> Clone for EnqueueOptions<'a>
impl<'a> Clone for EnqueueOptions<'a>
Source§fn clone(&self) -> EnqueueOptions<'a>
fn clone(&self) -> EnqueueOptions<'a>
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<'a> Debug for EnqueueOptions<'a>
impl<'a> Debug for EnqueueOptions<'a>
Source§impl<'a> Default for EnqueueOptions<'a>
impl<'a> Default for EnqueueOptions<'a>
Source§fn default() -> EnqueueOptions<'a>
fn default() -> EnqueueOptions<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for EnqueueOptions<'a>
impl<'a> RefUnwindSafe for EnqueueOptions<'a>
impl<'a> Send for EnqueueOptions<'a>
impl<'a> Sync for EnqueueOptions<'a>
impl<'a> Unpin for EnqueueOptions<'a>
impl<'a> UnsafeUnpin for EnqueueOptions<'a>
impl<'a> UnwindSafe for EnqueueOptions<'a>
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,
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