#[non_exhaustive]pub enum RequestField {
ActorRef,
ReasonCode,
OperationId,
}Expand description
A bounded request-envelope field category.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ActorRef
Opaque authorized-caller reference.
ReasonCode
Closed-set machine reason code.
OperationId
Caller-supplied idempotency key.
Trait Implementations§
Source§impl Clone for RequestField
impl Clone for RequestField
Source§fn clone(&self) -> RequestField
fn clone(&self) -> RequestField
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 moreimpl Copy for RequestField
Source§impl Debug for RequestField
impl Debug for RequestField
impl Eq for RequestField
Source§impl PartialEq for RequestField
impl PartialEq for RequestField
impl StructuralPartialEq for RequestField
Auto Trait Implementations§
impl Freeze for RequestField
impl RefUnwindSafe for RequestField
impl Send for RequestField
impl Sync for RequestField
impl Unpin for RequestField
impl UnsafeUnpin for RequestField
impl UnwindSafe for RequestField
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