Struct postgres::CancelToken [−][src]
pub struct CancelToken(_);
Expand description
The capability to request cancellation of in-progress queries on a connection.
Implementations
Attempts to cancel the in-progress query on the connection associated
with this CancelToken
.
The server provides no information about whether a cancellation attempt was successful or not. An error will only be returned if the client was unable to connect to the database.
Cancellation is inherently racy. There is no guarantee that the cancellation request will reach the server before the query terminates normally, or that the connection associated with this token is still active.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for CancelToken
impl Send for CancelToken
impl Sync for CancelToken
impl Unpin for CancelToken
impl UnwindSafe for CancelToken
Blanket Implementations
Mutably borrows from an owned value. Read more