Enum tor_netdoc::doc::routerdesc::RelayPlatform
source · #[non_exhaustive]pub enum RelayPlatform {
Tor(TorVersion, String),
Other(String),
}
Available on crate feature
routerdesc
only.Expand description
Description of the software a relay is running.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Tor(TorVersion, String)
Software advertised to be some version of Tor, on some platform.
Other(String)
Software not advertised to be Tor.
Trait Implementations§
source§impl Clone for RelayPlatform
impl Clone for RelayPlatform
source§fn clone(&self) -> RelayPlatform
fn clone(&self) -> RelayPlatform
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 RelayPlatform
impl Debug for RelayPlatform
source§impl FromStr for RelayPlatform
impl FromStr for RelayPlatform
source§impl PartialEq for RelayPlatform
impl PartialEq for RelayPlatform
source§fn eq(&self, other: &RelayPlatform) -> bool
fn eq(&self, other: &RelayPlatform) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for RelayPlatform
impl StructuralEq for RelayPlatform
impl StructuralPartialEq for RelayPlatform
Auto Trait Implementations§
impl RefUnwindSafe for RelayPlatform
impl Send for RelayPlatform
impl Sync for RelayPlatform
impl Unpin for RelayPlatform
impl UnwindSafe for RelayPlatform
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.