kubo / rust-oracle

Oracle driver for Rust
193 stars 43 forks source link

Why the lifetime is 'static #87

Open groobyming opened 5 months ago

groobyming commented 5 months ago

Why should we implement send for ResultSet<'static, T> rather than implement send for ResultSet?

impl Send for ResultSet<'static, T>

where
    T: RowValue,