Enum sp_rpc::list::ListOrValue [−][src]
pub enum ListOrValue<T> { List(Vec<T>), Value(T), }
RPC list or value wrapper.
For some RPCs it’s convenient to call them with either a single value or a whole list of values to get a proper response. In theory you could do a batch query, but it’s:
- Less convenient in client libraries
- If the response value is small, the protocol overhead might be dominant.
Also it’s nice to be able to maintain backward compatibility for methods that were initially taking a value and now we want to expand them to take a list.
Variants
List(Vec<T>)
A list of values of given type.
A single value of given type.
Implementations
impl<T> ListOrValue<T>
[src]
impl<T> ListOrValue<T>
[src]pub fn map<F: Fn(T) -> X, X>(self, f: F) -> ListOrValue<X>
[src]
Map every contained value using function F
.
This allows to easily convert all values in any of the variants.
Trait Implementations
impl<'de, T> Deserialize<'de> for ListOrValue<T> where
T: Deserialize<'de>,
[src]
impl<'de, T> Deserialize<'de> for ListOrValue<T> where
T: Deserialize<'de>,
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl<T> From<T> for ListOrValue<T>
[src]
impl<T> From<T> for ListOrValue<T>
[src]impl<T: PartialEq> PartialEq<ListOrValue<T>> for ListOrValue<T>
[src]
impl<T: PartialEq> PartialEq<ListOrValue<T>> for ListOrValue<T>
[src]fn eq(&self, other: &ListOrValue<T>) -> bool
[src]
fn ne(&self, other: &ListOrValue<T>) -> bool
[src]
impl<T> Serialize for ListOrValue<T> where
T: Serialize,
[src]
impl<T> Serialize for ListOrValue<T> where
T: Serialize,
[src]impl<T> StructuralPartialEq for ListOrValue<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for ListOrValue<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for ListOrValue<T> where
T: Send,
T: Send,
impl<T> Sync for ListOrValue<T> where
T: Sync,
T: Sync,
impl<T> Unpin for ListOrValue<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for ListOrValue<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(self) -> T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> MaybeDebug for T where
T: Debug,
[src]
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,