kubo / rust-oracle

Oracle driver for Rust
178 stars 43 forks source link

Why the lifetime is 'static #87

Open groobyming opened 1 week ago

groobyming commented 1 week 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,