Struct solana_client::quic_client::QuicTpuConnection
source · [−]pub struct QuicTpuConnection { /* private fields */ }
Implementations
sourceimpl QuicTpuConnection
impl QuicTpuConnection
pub fn new(
endpoint: Arc<QuicLazyInitializedEndpoint>,
tpu_addr: SocketAddr,
connection_stats: Arc<ConnectionCacheStats>
) -> Self
pub fn new_with_client(
client: Arc<QuicClient>,
connection_stats: Arc<ConnectionCacheStats>
) -> Self
Trait Implementations
sourceimpl From<QuicTpuConnection> for BlockingConnection
impl From<QuicTpuConnection> for BlockingConnection
sourcefn from(v: QuicTpuConnection) -> BlockingConnection
fn from(v: QuicTpuConnection) -> BlockingConnection
Converts to this type from the input type.
sourceimpl TpuConnection for QuicTpuConnection
impl TpuConnection for QuicTpuConnection
fn tpu_addr(&self) -> &SocketAddr
fn send_wire_transaction_batch<T>(&self, buffers: &[T]) -> TransportResult<()>where
T: AsRef<[u8]> + Send + Sync,
fn send_wire_transaction_async(
&self,
wire_transaction: Vec<u8>
) -> TransportResult<()>
fn send_wire_transaction_batch_async(
&self,
buffers: Vec<Vec<u8>>
) -> TransportResult<()>
fn serialize_and_send_transaction(
&self,
transaction: &VersionedTransaction
) -> TransportResult<()>
fn send_wire_transaction<T>(&self, wire_transaction: T) -> TransportResult<()>where
T: AsRef<[u8]> + Send + Sync,
fn par_serialize_and_send_transaction_batch(
&self,
transactions: &[VersionedTransaction]
) -> TransportResult<()>
sourceimpl TryInto<QuicTpuConnection> for BlockingConnection
impl TryInto<QuicTpuConnection> for BlockingConnection
sourcefn try_into(
self
) -> Result<QuicTpuConnection, <Self as TryInto<QuicTpuConnection>>::Error>
fn try_into(
self
) -> Result<QuicTpuConnection, <Self as TryInto<QuicTpuConnection>>::Error>
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for QuicTpuConnection
impl Send for QuicTpuConnection
impl Sync for QuicTpuConnection
impl Unpin for QuicTpuConnection
impl !UnwindSafe for QuicTpuConnection
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more