pub struct Signed<M, A> { /* private fields */ }Implementations§
Trait Implementations§
Source§impl<RM, RA> From<Signed<<RM as HasDomainType>::DomainType, <RA as HasDomainType>::DomainType>> for RawSigned<RM, RA>where
RM: HasDomainType,
RA: HasDomainType,
impl<RM, RA> From<Signed<<RM as HasDomainType>::DomainType, <RA as HasDomainType>::DomainType>> for RawSigned<RM, RA>where
RM: HasDomainType,
RA: HasDomainType,
Source§fn from(value: Signed<RM::DomainType, RA::DomainType>) -> Self
fn from(value: Signed<RM::DomainType, RA::DomainType>) -> Self
Converts to this type from the input type.
impl<M: PartialEq, A: PartialEq> StructuralPartialEq for Signed<M, A>
Source§impl<RM, RA> TryFrom<RawSigned<RM, RA>> for Signed<RM::DomainType, RA::DomainType>where
RM: HasDomainType,
RA: HasDomainType,
impl<RM, RA> TryFrom<RawSigned<RM, RA>> for Signed<RM::DomainType, RA::DomainType>where
RM: HasDomainType,
RA: HasDomainType,
Auto Trait Implementations§
impl<M, A> Freeze for Signed<M, A>
impl<M, A> RefUnwindSafe for Signed<M, A>where
M: RefUnwindSafe,
A: RefUnwindSafe,
impl<M, A> Send for Signed<M, A>
impl<M, A> Sync for Signed<M, A>
impl<M, A> Unpin for Signed<M, A>
impl<M, A> UnsafeUnpin for Signed<M, A>where
M: UnsafeUnpin,
A: UnsafeUnpin,
impl<M, A> UnwindSafe for Signed<M, A>where
M: UnwindSafe,
A: UnwindSafe,
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> ⓘ
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 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> ⓘ
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