pub struct SigningCapability { /* private fields */ }Expand description
Signer-facing capability used to seal shaped requests.
Values of this type are created only by sign_request. Signer
implementations receive a mutable reference while their crate::Signer::sign
method is executing, which keeps arbitrary crates from sealing shaped
requests outside the signer boundary.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SigningCapability
impl RefUnwindSafe for SigningCapability
impl Send for SigningCapability
impl Sync for SigningCapability
impl Unpin for SigningCapability
impl UnsafeUnpin for SigningCapability
impl UnwindSafe for SigningCapability
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