Struct tor_netdoc::doc::netstatus::RelayFlags [−][src]
pub struct RelayFlags { /* fields omitted */ }
Expand description
A set of recognized directory flags on a single relay.
These flags come from a consensus directory document, and are used to describe what the authorities believe about the relay. If the document contained any flags that we didn’t recognize, they are not listed in this type.
The bit values used to represent the flags have no meaning.
Implementations
Is this a directory authority?
Is this relay marked as a bad exit?
Bad exits can be used as intermediate relays, but not to deliver traffic.
Is this relay marked as an exit for weighting purposes?
Is this relay considered “fast” above a certain threshold?
Is this relay suitable for use as a guard relay?
Clients choose their their initial relays from among the set of Guard relays.
Does this relay participate on the hidden service directory ring?
If set, there is no consensus for the ed25519 key for this relay.
Is this relay considered “stable” enough for long-lived circuits?
Set if the authorities are requesting a fresh descriptor for this relay.
Set if this relay is currently running.
This flag can appear in votes, but in consensuses, every relay is assumed to be running.
Set if this relay is considered “valid” – allowed to be on the network.
This flag can appear in votes, but in consensuses, every relay is assumed to be valid.
Set if this relay supports a currently recognized version of the directory protocol.
Returns an empty set of flags
Returns the set containing all flags.
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
Returns true
if there are flags common to both self
and other
.
Returns true
all of the flags in other
are contained within self
.
Inserts the specified flags in-place.
Removes the specified flags in-place.
Toggles the specified flags in-place.
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
Returns the intersection between the two sets of flags.
type Output = RelayFlags
type Output = RelayFlags
The resulting type after applying the &
operator.
Disables all flags disabled in the set.
Returns the union of the two sets of flags.
type Output = RelayFlags
type Output = RelayFlags
The resulting type after applying the |
operator.
Adds the set of flags.
Returns the left flags, but with all the right flags toggled.
type Output = RelayFlags
type Output = RelayFlags
The resulting type after applying the ^
operator.
Toggles the set of flags.
Extends a collection with the contents of an iterator. Read more
extend_one
)Extends a collection with exactly one element.
extend_one
)Reserves capacity in a collection for the given number of additional elements. Read more
Creates a value from an iterator. Read more
Returns the complement of this set of flags.
type Output = RelayFlags
type Output = RelayFlags
The resulting type after applying the !
operator.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Returns the set difference of the two sets of flags.
type Output = RelayFlags
type Output = RelayFlags
The resulting type after applying the -
operator.
Disables all flags enabled in the set.
Auto Trait Implementations
impl RefUnwindSafe for RelayFlags
impl Send for RelayFlags
impl Sync for RelayFlags
impl Unpin for RelayFlags
impl UnwindSafe for RelayFlags
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self
pub fn vzip(self) -> V