Enum webdriver::server::SessionTeardownKind
source · pub enum SessionTeardownKind {
Deleted,
NotDeleted,
}
Expand description
Representation of whether we managed to successfully send a DeleteSession message and read the response during session teardown.
Variants§
Deleted
A DeleteSession message has been sent and the response handled.
NotDeleted
No DeleteSession message has been sent, or the response was not received.
Trait Implementations§
source§impl Clone for SessionTeardownKind
impl Clone for SessionTeardownKind
source§fn clone(&self) -> SessionTeardownKind
fn clone(&self) -> SessionTeardownKind
Returns a copy 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 SessionTeardownKind
impl Debug for SessionTeardownKind
source§impl PartialEq for SessionTeardownKind
impl PartialEq for SessionTeardownKind
source§fn eq(&self, other: &SessionTeardownKind) -> bool
fn eq(&self, other: &SessionTeardownKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SessionTeardownKind
Auto Trait Implementations§
impl Freeze for SessionTeardownKind
impl RefUnwindSafe for SessionTeardownKind
impl Send for SessionTeardownKind
impl Sync for SessionTeardownKind
impl Unpin for SessionTeardownKind
impl UnwindSafe for SessionTeardownKind
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