Skip to content
This repository has been archived by the owner on May 10, 2020. It is now read-only.

trivial: make StmtStream Send #105

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tiberius/src/stmt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub struct StmtStream<I: BoxableIo, R: StmtResult<I>> {
/// This marker simply is used to allow this struct to be generic over a possible
/// result, which allows us to share all state logic within this struct
/// (e.g. we don't need a query specific future)
_marker: PhantomData<*const R>,
_marker: PhantomData<R>,
}

impl<I: BoxableIo, R: StmtResult<I>> StmtStream<I, R> {
Expand Down