pub struct Timeouts<D> {
pub start_read_request: Option<D>,
pub read_request: Option<D>,
pub write: Option<D>,
}Expand description
How long to wait before timing out for different operations. If set to None, the operation never times out.
Fields§
§start_read_request: Option<D>§read_request: Option<D>§write: Option<D>Trait Implementations§
Auto Trait Implementations§
impl<D> RefUnwindSafe for Timeouts<D>where
D: RefUnwindSafe,
impl<D> Send for Timeouts<D>where
D: Send,
impl<D> Sync for Timeouts<D>where
D: Sync,
impl<D> Unpin for Timeouts<D>where
D: Unpin,
impl<D> UnwindSafe for Timeouts<D>where
D: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more