pub trait RequestId {
// Required method
fn request_id(&self) -> Option<&str>;
}Expand description
Implementers add a function to return an AWS request ID
Required Methods§
Sourcefn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or None if the service could not be reached.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".