pub struct Transition {
pub host: String,
pub method: String,
pub norm_path: String,
pub from_status: i64,
pub to_status: i64,
pub from_id: String,
pub to_id: String,
pub gap_ms: f64,
pub label: String,
}Fields§
§host: String§method: String§norm_path: String§from_status: i64§to_status: i64§from_id: String§to_id: String§gap_ms: f64§label: StringTrait Implementations§
Source§impl Debug for Transition
impl Debug for Transition
Auto Trait Implementations§
impl Freeze for Transition
impl RefUnwindSafe for Transition
impl Send for Transition
impl Sync for Transition
impl Unpin for Transition
impl UnsafeUnpin for Transition
impl UnwindSafe for Transition
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