pub struct CombinedLogEntry<'a> {
pub ip: IpAddr,
pub identd_user: Option<&'a str>,
pub user: Option<&'a str>,
pub timestamp: DateTime<FixedOffset>,
pub request: RequestResult<'a>,
pub status_code: StatusCode,
pub bytes: u64,
pub referrer: Option<Uri>,
pub user_agent: Option<&'a str>,
}
Fields§
§ip: IpAddr
§identd_user: Option<&'a str>
§user: Option<&'a str>
§timestamp: DateTime<FixedOffset>
§request: RequestResult<'a>
§status_code: StatusCode
§bytes: u64
§referrer: Option<Uri>
§user_agent: Option<&'a str>
Trait Implementations§
Auto Trait Implementations§
impl<'a> !Freeze for CombinedLogEntry<'a>
impl<'a> !RefUnwindSafe for CombinedLogEntry<'a>
impl<'a> Send for CombinedLogEntry<'a>
impl<'a> Sync for CombinedLogEntry<'a>
impl<'a> Unpin for CombinedLogEntry<'a>
impl<'a> !UnwindSafe for CombinedLogEntry<'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