INNER CODE UNIT · Rust

from

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

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

impl From<ParsePubkeyError> for ClientError {
    fn from(error: ParsePubkeyError) -> Self {
        ClientError::Pubkey(
            "Pubkey error".to_string(),
            error.to_string(),
        )
    }
}

impl From<Error> for ClientError {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…