[−][src]Enum sp_rpc::list::ListOrValue
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]
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<T: Debug> Debug for ListOrValue<T>
[src]
impl<'de, T> Deserialize<'de> for ListOrValue<T> where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
pub 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<Vec<T, Global>> for ListOrValue<T>
[src]
impl<T: PartialEq> PartialEq<ListOrValue<T>> for ListOrValue<T>
[src]
pub fn eq(&self, other: &ListOrValue<T>) -> bool
[src]
pub fn ne(&self, other: &ListOrValue<T>) -> bool
[src]
impl<T> Serialize for ListOrValue<T> where
T: Serialize,
[src]
T: Serialize,
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<T> StructuralPartialEq for ListOrValue<T>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for ListOrValue<T> where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,
impl<T> Send for ListOrValue<T> where
T: Send,
[src]
T: Send,
impl<T> Sync for ListOrValue<T> where
T: Sync,
[src]
T: Sync,
impl<T> Unpin for ListOrValue<T> where
T: Unpin,
[src]
T: Unpin,
impl<T> UnwindSafe for ListOrValue<T> where
T: UnwindSafe,
[src]
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<!> for T
[src]
impl<T> From<T> 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, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
pub fn from_ref(outer: &Outer) -> &T
[src]
Get a reference to the inner from the outer.
pub fn from_mut(outer: &mut Outer) -> &mut T
[src]
Get a mutable reference to the inner from the outer.
impl<T> MaybeDebug for T where
T: Debug,
T: Debug,
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
T: UncheckedFrom<S>,
pub fn unchecked_into(self) -> T
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,