Module scylla::transport::session

source ·
Expand description

Session is the main object used in the driver.
It manages all connections to the cluster and allows to perform queries.

Structs§

  • Session manages connections to the cluster and allows to perform queries
  • Configuration options for Session. Can be created manually, but usually it’s easier to use SessionBuilder
  • Iterator over rows parsed as the given type
    Returned by rows.into_typed::<(...)>()

Enums§

  • The target size of a per-node connection pool.
  • Error caused by failed address translation done before establishing connection

Traits§

  • Translates IP addresses received from ScyllaDB nodes into locally reachable addresses.
  • Trait used to implement Vec<result::Row>::into_typed<RowT>