Struct tor_hsclient::HsClientSecretKeys
source · pub struct HsClientSecretKeys { /* private fields */ }Expand description
Keys (if any) to use when connecting to a specific onion service.
Represents a possibly empty subset of the following keys:
KS_hsc_desc_enc,HsClientDescEncSecretKeyKS_hsc_intro_auth,HsClientIntroAuthKeypair
HsClientSecretKeys is constructed with a Builder:
use ClientSecretKeysBuilder::default(),
optionally call setters, and then call build().
For client connections to share circuits and streams,
call build only once.
Different calls to build yield HsClientSecretKeys values
which won’t share HS circuits, streams, or authentication.
Conversely, Clones of an HsClientSecretKeys can share circuits.
All empty HsClientSecretKeys
(for example, from :none())
can share circuits.
Implementations§
source§impl HsClientSecretKeys
impl HsClientSecretKeys
Trait Implementations§
source§impl Clone for HsClientSecretKeys
impl Clone for HsClientSecretKeys
source§fn clone(&self) -> HsClientSecretKeys
fn clone(&self) -> HsClientSecretKeys
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 HsClientSecretKeys
impl Debug for HsClientSecretKeys
source§impl Default for HsClientSecretKeys
impl Default for HsClientSecretKeys
source§fn default() -> HsClientSecretKeys
fn default() -> HsClientSecretKeys
Returns the “default value” for a type. Read more
source§impl Hash for HsClientSecretKeys
impl Hash for HsClientSecretKeys
source§impl PartialEq<HsClientSecretKeys> for HsClientSecretKeys
impl PartialEq<HsClientSecretKeys> for HsClientSecretKeys
impl Eq for HsClientSecretKeys
Auto Trait Implementations§
impl RefUnwindSafe for HsClientSecretKeys
impl Send for HsClientSecretKeys
impl Sync for HsClientSecretKeys
impl Unpin for HsClientSecretKeys
impl UnwindSafe for HsClientSecretKeys
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<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.