Struct tor_checkable::signed::SignatureGated

source ·
pub struct SignatureGated<T> { /* private fields */ }
Expand description

A SignatureGated object is a self-signed object that’s well-signed when one or more ValidatableSignature objects are correct.

Implementations§

source§

impl<T> SignatureGated<T>

source

pub fn new(obj: T, signatures: Vec<Box<dyn ValidatableSignature>>) -> Self

Return a new SignatureGated object that will be treated as correct if every one of the given set of signatures is valid.

source

pub fn dangerously_map<F, U>(self, f: F) -> SignatureGated<U>
where F: FnOnce(T) -> U,

Consume this SignatureGated, and return a new one with the same bounds, applying f to its protected value.

The caller must ensure that f does not make any assumptions about the well-signedness of the protected value, or leak any of its contents in an inappropriate way.

Trait Implementations§

source§

impl<T> SelfSigned<T> for SignatureGated<T>

§

type Error = Error

An error type that’s returned when the object is not well-signed.
source§

fn dangerously_assume_wellsigned(self) -> T

Return the underlying object without checking its signature.
source§

fn is_well_signed(&self) -> Result<(), Self::Error>

Check the signature on this object
source§

fn check_signature(self) -> Result<T, Self::Error>

Unwrap this object if the signature is valid

Auto Trait Implementations§

§

impl<T> Freeze for SignatureGated<T>
where T: Freeze,

§

impl<T> !RefUnwindSafe for SignatureGated<T>

§

impl<T> !Send for SignatureGated<T>

§

impl<T> !Sync for SignatureGated<T>

§

impl<T> Unpin for SignatureGated<T>
where T: Unpin,

§

impl<T> !UnwindSafe for SignatureGated<T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V