#[repr(i32)]pub enum IdempotencyLevel {
IdempotencyUnknown = 0,
NoSideEffects = 1,
Idempotent = 2,
}Available on crate features
protobuf and ttrpc only.Expand description
Is this method side-effect-free (or safe in HTTP parlance), or idempotent, or neither? HTTP based RPC implementation may choose GET verb for safe methods, and PUT verb for idempotent methods instead of the default POST.
Variants§
IdempotencyUnknown = 0
NoSideEffects = 1
implies idempotent
Idempotent = 2
idempotent, but may have side effects
Implementations§
Source§impl IdempotencyLevel
impl IdempotencyLevel
Sourcepub const fn is_valid(value: i32) -> bool
Available on crate features grpc and http and std only.
pub const fn is_valid(value: i32) -> bool
grpc and http and std only.Returns true if value is a variant of IdempotencyLevel.
Sourcepub fn from_i32(value: i32) -> Option<IdempotencyLevel>
👎Deprecated: Use the TryFrom<i32> implementation instead
Available on crate features grpc and http and std only.
pub fn from_i32(value: i32) -> Option<IdempotencyLevel>
Use the TryFrom<i32> implementation instead
grpc and http and std only.Converts an i32 to a IdempotencyLevel, or None if value is not a valid variant.
Source§impl IdempotencyLevel
impl IdempotencyLevel
Sourcepub fn as_str_name(&self) -> &'static str
Available on crate features grpc and http and std only.
pub fn as_str_name(&self) -> &'static str
grpc and http and std only.String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
Sourcepub fn from_str_name(value: &str) -> Option<IdempotencyLevel>
Available on crate features grpc and http and std only.
pub fn from_str_name(value: &str) -> Option<IdempotencyLevel>
grpc and http and std only.Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
Source§impl Clone for IdempotencyLevel
impl Clone for IdempotencyLevel
Source§fn clone(&self) -> IdempotencyLevel
fn clone(&self) -> IdempotencyLevel
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 IdempotencyLevel
Source§impl Debug for IdempotencyLevel
impl Debug for IdempotencyLevel
Source§impl Default for IdempotencyLevel
impl Default for IdempotencyLevel
Source§fn default() -> IdempotencyLevel
fn default() -> IdempotencyLevel
Returns the “default value” for a type. Read more
impl Eq for IdempotencyLevel
Source§impl From<IdempotencyLevel> for i32
impl From<IdempotencyLevel> for i32
Source§fn from(value: IdempotencyLevel) -> i32
fn from(value: IdempotencyLevel) -> i32
Converts to this type from the input type.
Source§impl Hash for IdempotencyLevel
impl Hash for IdempotencyLevel
Source§impl Ord for IdempotencyLevel
impl Ord for IdempotencyLevel
Source§fn cmp(&self, other: &IdempotencyLevel) -> Ordering
fn cmp(&self, other: &IdempotencyLevel) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for IdempotencyLevel
impl PartialEq for IdempotencyLevel
Source§impl PartialOrd for IdempotencyLevel
impl PartialOrd for IdempotencyLevel
impl StructuralPartialEq for IdempotencyLevel
Source§impl TryFrom<i32> for IdempotencyLevel
impl TryFrom<i32> for IdempotencyLevel
Source§type Error = UnknownEnumValue
type Error = UnknownEnumValue
The type returned in the event of a conversion error.
Source§fn try_from(value: i32) -> Result<IdempotencyLevel, UnknownEnumValue>
fn try_from(value: i32) -> Result<IdempotencyLevel, UnknownEnumValue>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for IdempotencyLevel
impl RefUnwindSafe for IdempotencyLevel
impl Send for IdempotencyLevel
impl Sync for IdempotencyLevel
impl Unpin for IdempotencyLevel
impl UnsafeUnpin for IdempotencyLevel
impl UnwindSafe for IdempotencyLevel
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§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§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a rama_grpc::Request§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Create a new
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more