pub struct SolanaWalletFilterTemplate {
pub accounts: Vec<String>,
}Expand description
Template arguments for a Solana wallet filter: matches activity for a list of Solana account addresses.
Fields§
§accounts: Vec<String>Solana account addresses to match against.
Trait Implementations§
Source§impl Clone for SolanaWalletFilterTemplate
impl Clone for SolanaWalletFilterTemplate
Source§fn clone(&self) -> SolanaWalletFilterTemplate
fn clone(&self) -> SolanaWalletFilterTemplate
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 Debug for SolanaWalletFilterTemplate
impl Debug for SolanaWalletFilterTemplate
Source§impl<'de> Deserialize<'de> for SolanaWalletFilterTemplate
impl<'de> Deserialize<'de> for SolanaWalletFilterTemplate
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
Auto Trait Implementations§
impl Freeze for SolanaWalletFilterTemplate
impl RefUnwindSafe for SolanaWalletFilterTemplate
impl Send for SolanaWalletFilterTemplate
impl Sync for SolanaWalletFilterTemplate
impl Unpin for SolanaWalletFilterTemplate
impl UnsafeUnpin for SolanaWalletFilterTemplate
impl UnwindSafe for SolanaWalletFilterTemplate
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