pub enum RpcEncodingConfigWrapper<T> {
Deprecated(Option<UiTransactionEncoding>),
Current(Option<T>),
}
Variants§
Deprecated(Option<UiTransactionEncoding>)
Current(Option<T>)
Implementations§
source§impl<T: EncodingConfig + Default + Copy> RpcEncodingConfigWrapper<T>
impl<T: EncodingConfig + Default + Copy> RpcEncodingConfigWrapper<T>
pub fn convert_to_current(&self) -> T
pub fn convert<U: EncodingConfig + From<T>>( &self ) -> RpcEncodingConfigWrapper<U>
Trait Implementations§
source§impl<T: Clone> Clone for RpcEncodingConfigWrapper<T>
impl<T: Clone> Clone for RpcEncodingConfigWrapper<T>
source§fn clone(&self) -> RpcEncodingConfigWrapper<T>
fn clone(&self) -> RpcEncodingConfigWrapper<T>
Returns a copy of the value. Read more
1.0.0 · 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 RpcEncodingConfigWrapper<T>
impl<T: Debug> Debug for RpcEncodingConfigWrapper<T>
source§impl<'de, T> Deserialize<'de> for RpcEncodingConfigWrapper<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for RpcEncodingConfigWrapper<T>where T: Deserialize<'de>,
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
source§impl From<RpcBlockConfig> for RpcEncodingConfigWrapper<RpcBlockConfig>
impl From<RpcBlockConfig> for RpcEncodingConfigWrapper<RpcBlockConfig>
source§fn from(config: RpcBlockConfig) -> Self
fn from(config: RpcBlockConfig) -> Self
Converts to this type from the input type.
source§impl From<RpcConfirmedBlockConfig> for RpcEncodingConfigWrapper<RpcConfirmedBlockConfig>
impl From<RpcConfirmedBlockConfig> for RpcEncodingConfigWrapper<RpcConfirmedBlockConfig>
source§fn from(config: RpcConfirmedBlockConfig) -> Self
fn from(config: RpcConfirmedBlockConfig) -> Self
Converts to this type from the input type.
source§impl<T: PartialEq> PartialEq<RpcEncodingConfigWrapper<T>> for RpcEncodingConfigWrapper<T>
impl<T: PartialEq> PartialEq<RpcEncodingConfigWrapper<T>> for RpcEncodingConfigWrapper<T>
source§fn eq(&self, other: &RpcEncodingConfigWrapper<T>) -> bool
fn eq(&self, other: &RpcEncodingConfigWrapper<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.