pub enum AdsTimeout {
DefaultTimeout,
CustomTimeout(u64),
}Expand description
Specifies the maximum waiting time for an ADS response.
- AdsTimeout::DefaultTimeout Corresponds to 5 seconds.
- AdsTimeout::CustomTimeout Value in seconds.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdsTimeout
impl RefUnwindSafe for AdsTimeout
impl Send for AdsTimeout
impl Sync for AdsTimeout
impl Unpin for AdsTimeout
impl UnwindSafe for AdsTimeout
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