Struct aws_smithy_eventstream::frame::NoOpSigner
source · [−]pub struct NoOpSigner {}Trait Implementations
sourceimpl Debug for NoOpSigner
impl Debug for NoOpSigner
sourceimpl SignMessage for NoOpSigner
impl SignMessage for NoOpSigner
fn sign(&mut self, message: Message) -> Result<Message, SignMessageError>
sourcefn sign_empty(&mut self) -> Option<Result<Message, SignMessageError>>
fn sign_empty(&mut self) -> Option<Result<Message, SignMessageError>>
SigV4 requires an empty last signed message to be sent.
Other protocols do not require one.
Return Some(_) to send a signed last empty message, before completing the stream.
Return None to not send one and terminate the stream immediately. Read more
Auto Trait Implementations
impl RefUnwindSafe for NoOpSigner
impl Send for NoOpSigner
impl Sync for NoOpSigner
impl Unpin for NoOpSigner
impl UnwindSafe for NoOpSigner
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more