vec_pubkey_from_base58

Function vec_pubkey_from_base58 

Source
pub fn vec_pubkey_from_base58<'de, D>(
    deserializer: D,
) -> Result<Vec<Pubkey>, D::Error>
where D: Deserializer<'de>,
Expand description

Function to provide to serde in order to deserialize a Vec from a a vec of base58 strings. Use as follows: #[serde(deserialize_with = "vec_pubkey_from_base58")]