pub struct AccessLogRequest<'a> {
pub operation: &'a str,
pub key: Option<&'a str>,
pub status: u16,
pub request_id: &'a str,
pub method: &'a str,
pub path: &'a str,
}Expand description
Everything needed to describe a single S3 request for access logging.
Fields§
§operation: &'a str§key: Option<&'a str>§status: u16§request_id: &'a str§method: &'a str§path: &'a strAuto Trait Implementations§
impl<'a> Freeze for AccessLogRequest<'a>
impl<'a> RefUnwindSafe for AccessLogRequest<'a>
impl<'a> Send for AccessLogRequest<'a>
impl<'a> Sync for AccessLogRequest<'a>
impl<'a> Unpin for AccessLogRequest<'a>
impl<'a> UnsafeUnpin for AccessLogRequest<'a>
impl<'a> UnwindSafe for AccessLogRequest<'a>
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