pub struct AskOptions {
pub timeout_seconds: Option<u64>,
}Expand description
Options for ask requests
Fields§
§timeout_seconds: Option<u64>Optional timeout in seconds. If None, will poll indefinitely
Trait Implementations§
Source§impl Clone for AskOptions
impl Clone for AskOptions
Source§fn clone(&self) -> AskOptions
fn clone(&self) -> AskOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AskOptions
impl Debug for AskOptions
Source§impl Default for AskOptions
impl Default for AskOptions
Source§fn default() -> AskOptions
fn default() -> AskOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AskOptions
impl RefUnwindSafe for AskOptions
impl Send for AskOptions
impl Sync for AskOptions
impl Unpin for AskOptions
impl UnwindSafe for AskOptions
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