pub struct Event {
pub status: Option<String>,
pub test_id: Option<String>,
pub timestamp: Option<DateTime<Utc>>,
pub file_name: Option<String>,
pub file_content: Option<Vec<u8>>,
pub mime_type: Option<String>,
pub route_code: Option<String>,
pub tags: Option<Vec<String>>,
}
Fields§
§status: Option<String>
§test_id: Option<String>
§timestamp: Option<DateTime<Utc>>
§file_name: Option<String>
§file_content: Option<Vec<u8>>
§mime_type: Option<String>
§route_code: Option<String>
Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnwindSafe for Event
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