pub struct NotImplementedHandler;Expand description
Default handler that returns an error for all operations.
Trait Implementations§
Source§impl Clone for NotImplementedHandler
impl Clone for NotImplementedHandler
Source§fn clone(&self) -> NotImplementedHandler
fn clone(&self) -> NotImplementedHandler
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NotImplementedHandler
impl Debug for NotImplementedHandler
Source§impl Default for NotImplementedHandler
impl Default for NotImplementedHandler
Source§fn default() -> NotImplementedHandler
fn default() -> NotImplementedHandler
Returns the “default value” for a type. Read more
Source§impl LogsHandler for NotImplementedHandler
impl LogsHandler for NotImplementedHandler
Source§fn handle_operation(
&self,
op: LogsOperation,
_body: Bytes,
) -> Pin<Box<dyn Future<Output = Result<Response<LogsResponseBody>, LogsError>> + Send>>
fn handle_operation( &self, op: LogsOperation, _body: Bytes, ) -> Pin<Box<dyn Future<Output = Result<Response<LogsResponseBody>, LogsError>> + Send>>
Handle a CloudWatch Logs operation and produce an HTTP response.
Auto Trait Implementations§
impl Freeze for NotImplementedHandler
impl RefUnwindSafe for NotImplementedHandler
impl Send for NotImplementedHandler
impl Sync for NotImplementedHandler
impl Unpin for NotImplementedHandler
impl UnsafeUnpin for NotImplementedHandler
impl UnwindSafe for NotImplementedHandler
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