pub enum VersionRequest {
Latest,
LatestIn(Channel),
Fixed(Version),
}Variants§
Latest
Uses the latest working version. Might not be stable yet. You may want to prefer variant VersionRequest::LatestIn instead.
LatestIn(Channel)
Use the latest release from the given [chrome_for_testing::channel::Channel], e.g. the one from the [chrome_for_testing::channel::Channel::Stable] channel.
Fixed(Version)
Pin a specific version to use.
Trait Implementations§
Source§impl Clone for VersionRequest
impl Clone for VersionRequest
Source§fn clone(&self) -> VersionRequest
fn clone(&self) -> VersionRequest
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 VersionRequest
impl Debug for VersionRequest
Source§impl PartialEq for VersionRequest
impl PartialEq for VersionRequest
impl Copy for VersionRequest
impl Eq for VersionRequest
impl StructuralPartialEq for VersionRequest
Auto Trait Implementations§
impl Freeze for VersionRequest
impl RefUnwindSafe for VersionRequest
impl Send for VersionRequest
impl Sync for VersionRequest
impl Unpin for VersionRequest
impl UnwindSafe for VersionRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.