INNER CODE UNIT · Rust

from

0xfnzero/pumpfun-sdk · src/error/mod.rs:162

    fn from(error: SolanaClientError) -> Self {
        ClientError::Solana(
            "Solana client error".to_string(),
            error.to_string(),
        )
    }
}

impl From<PubsubClientError> for ClientError {
    fn from(error: PubsubClientError) -> Self {
        ClientError::Solana(
            "PubSub client error".to_string(),
            error.to_string(),
        )
    }
}

impl From<ParsePubkeyError> for ClientError {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…