pub enum FinalArguments<T> {
Absent,
Value(T),
}Expand description
Wire presence of an optional final request arguments member.
Variants§
Absent
The arguments member was not present on the wire.
Value(T)
The member was present with its admitted typed value.
Implementations§
Source§impl<T> FinalArguments<T>
impl<T> FinalArguments<T>
Trait Implementations§
Source§impl<T: Clone> Clone for FinalArguments<T>
impl<T: Clone> Clone for FinalArguments<T>
Source§fn clone(&self) -> FinalArguments<T>
fn clone(&self) -> FinalArguments<T>
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<T: Debug> Debug for FinalArguments<T>
impl<T: Debug> Debug for FinalArguments<T>
Source§impl<T> Default for FinalArguments<T>
impl<T> Default for FinalArguments<T>
Source§impl<'de, T: Deserialize<'de>> Deserialize<'de> for FinalArguments<T>
impl<'de, T: Deserialize<'de>> Deserialize<'de> for FinalArguments<T>
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
impl<T: Eq> Eq for FinalArguments<T>
Source§impl<T: PartialEq> PartialEq for FinalArguments<T>
impl<T: PartialEq> PartialEq for FinalArguments<T>
Source§impl<T: Serialize> Serialize for FinalArguments<T>
impl<T: Serialize> Serialize for FinalArguments<T>
impl<T: PartialEq> StructuralPartialEq for FinalArguments<T>
Auto Trait Implementations§
impl<T> Freeze for FinalArguments<T>where
T: Freeze,
impl<T> RefUnwindSafe for FinalArguments<T>where
T: RefUnwindSafe,
impl<T> Send for FinalArguments<T>where
T: Send,
impl<T> Sync for FinalArguments<T>where
T: Sync,
impl<T> Unpin for FinalArguments<T>where
T: Unpin,
impl<T> UnsafeUnpin for FinalArguments<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for FinalArguments<T>where
T: UnwindSafe,
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<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<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).