pub struct Report {
pub title: Option<String>,
pub state: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub vulnerability_information: Option<String>,
pub disclosed_at: Option<String>,
pub bounty_awarded_at: Option<String>,
pub has_bounty: Option<bool>,
pub extra: BTreeMap<String, Value>,
}Expand description
See the HackerOne API reference for Report.
Fields§
§title: Option<String>title
state: Option<String>state
created_at: Option<String>created_at
updated_at: Option<String>updated_at
vulnerability_information: Option<String>vulnerability_information
disclosed_at: Option<String>disclosed_at
bounty_awarded_at: Option<String>bounty_awarded_at
has_bounty: Option<bool>has_bounty
extra: BTreeMap<String, Value>Fields the API returned that this version does not name.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Report
impl<'de> Deserialize<'de> for Report
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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