pub struct RedirectGroup {
pub host: String,
pub method: String,
pub norm_path: String,
pub status: i64,
pub count: usize,
pub target_host: Option<String>,
pub cross_host: bool,
pub is_storm: bool,
pub entry_ids: Vec<String>,
pub first_offset_ms: f64,
pub last_offset_ms: f64,
}Fields§
§host: String§method: String§norm_path: String§status: i64§count: usize§target_host: Option<String>§cross_host: bool§is_storm: bool§entry_ids: Vec<String>§first_offset_ms: f64§last_offset_ms: f64Trait Implementations§
Source§impl Debug for RedirectGroup
impl Debug for RedirectGroup
Auto Trait Implementations§
impl Freeze for RedirectGroup
impl RefUnwindSafe for RedirectGroup
impl Send for RedirectGroup
impl Sync for RedirectGroup
impl Unpin for RedirectGroup
impl UnsafeUnpin for RedirectGroup
impl UnwindSafe for RedirectGroup
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