rust-oracle
rust-oracle copied to clipboard
Why the lifetime is 'static
Why should we implement send for ResultSet<'static, T> rather than implement send for ResultSet<T>?
impl<T> Send for ResultSet<'static, T>
where
T: RowValue,