pub struct RelayFamily(Vec<LongIdent>);Expand description
Information about a relay family.
Tor relays may declare that they belong to the same family, to indicate that they are controlled by the same party or parties, and as such should not be used in the same circuit. Two relays belong to the same family if and only if each one lists the other as belonging to its family.
NOTE: when parsing, this type always discards incorrectly-formatted entries, including entries that are only nicknames.
TODO: This type probably belongs in a different crate.
Tuple Fields§
§0: Vec<LongIdent>Implementations§
Source§impl RelayFamily
impl RelayFamily
Sourcepub fn push(&mut self, rsa_id: RsaIdentity)
pub fn push(&mut self, rsa_id: RsaIdentity)
Add rsa_id to this family.
Sourcefn normalize(&mut self)
fn normalize(&mut self)
Convert this family to a standard format (with all IDs sorted and de-duplicated).
Sourcepub fn intern(self) -> Arc<Self> ⓘ
pub fn intern(self) -> Arc<Self> ⓘ
Consume this family, and return a new canonical interned representation of the family.
Sourcepub fn contains(&self, rsa_id: &RsaIdentity) -> bool
pub fn contains(&self, rsa_id: &RsaIdentity) -> bool
Does this family include the given relay?
Sourcepub fn members(&self) -> impl Iterator<Item = &RsaIdentity>
pub fn members(&self) -> impl Iterator<Item = &RsaIdentity>
Return an iterator over the RSA identity keys listed in this family.
Trait Implementations§
Source§impl Clone for RelayFamily
impl Clone for RelayFamily
Source§fn clone(&self) -> RelayFamily
fn clone(&self) -> RelayFamily
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for RelayFamily
impl Debug for RelayFamily
Source§impl Default for RelayFamily
impl Default for RelayFamily
Source§fn default() -> RelayFamily
fn default() -> RelayFamily
Source§impl FromStr for RelayFamily
impl FromStr for RelayFamily
Source§impl Hash for RelayFamily
impl Hash for RelayFamily
Source§impl ItemValueParseable for RelayFamily
impl ItemValueParseable for RelayFamily
Source§fn from_unparsed<'s>(input: UnparsedItem<'s>) -> Result<Self, EP>
fn from_unparsed<'s>(input: UnparsedItem<'s>) -> Result<Self, EP>
Source§impl PartialEq for RelayFamily
impl PartialEq for RelayFamily
Source§fn eq(&self, other: &RelayFamily) -> bool
fn eq(&self, other: &RelayFamily) -> bool
self and other values to be equal, and is used by ==.impl Eq for RelayFamily
impl StructuralPartialEq for RelayFamily
Auto Trait Implementations§
impl Freeze for RelayFamily
impl RefUnwindSafe for RelayFamily
impl Send for RelayFamily
impl Sync for RelayFamily
impl Unpin for RelayFamily
impl UnsafeUnpin for RelayFamily
impl UnwindSafe for RelayFamily
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
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
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more