[][src]Struct schnorrkel::musig::AggregatePublicKeySlice

pub struct AggregatePublicKeySlice<'a, K>(_)
where
    K: Borrow<PublicKey>
;

Aggregation helper for public keys kept in slices

Trait Implementations

impl<'a, K> AggregatePublicKey for AggregatePublicKeySlice<'a, K> where
    K: Borrow<PublicKey> + PartialEq<K>, 
[src]

Auto Trait Implementations

impl<'a, K> RefUnwindSafe for AggregatePublicKeySlice<'a, K> where
    K: RefUnwindSafe

impl<'a, K> Send for AggregatePublicKeySlice<'a, K> where
    K: Sync

impl<'a, K> Sync for AggregatePublicKeySlice<'a, K> where
    K: Sync

impl<'a, K> Unpin for AggregatePublicKeySlice<'a, K>

impl<'a, K> UnwindSafe for AggregatePublicKeySlice<'a, K> where
    K: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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