Enum notify_rust::Timeout
source · [−]pub enum Timeout {
Default,
Never,
Milliseconds(u32),
}Expand description
Describes the timeout of a notification
Variants
Default
Expires according to server default.
Whatever that might be…
Never
Do not expire, user will have to close this manually.
Milliseconds(u32)
Expire after n milliseconds.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Timeout
impl UnwindSafe for Timeout
Blanket Implementations
Mutably borrows from an owned value. Read more