pub struct Hacktivity {Show 14 fields
pub title: Option<String>,
pub substate: Option<String>,
pub url: Option<String>,
pub disclosed_at: Option<String>,
pub submitted_at: Option<String>,
pub disclosed: Option<bool>,
pub cve_ids: Option<Vec<String>>,
pub cwe: Option<String>,
pub severity_rating: Option<String>,
pub votes: Option<i64>,
pub total_awarded_amount: Option<i64>,
pub latest_disclosable_action: Option<String>,
pub latest_disclosable_activity_at: Option<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
See the HackerOne API reference for Hacktivity.
Fields§
§title: Option<String>title
substate: Option<String>substate
url: Option<String>url
disclosed_at: Option<String>disclosed_at
submitted_at: Option<String>submitted_at
disclosed: Option<bool>disclosed
cve_ids: Option<Vec<String>>cve_ids
cwe: Option<String>cwe
severity_rating: Option<String>severity_rating
votes: Option<i64>votes
total_awarded_amount: Option<i64>total_awarded_amount
latest_disclosable_action: Option<String>latest_disclosable_action
latest_disclosable_activity_at: Option<String>latest_disclosable_activity_at
extra: BTreeMap<String, Value>Fields the API returned that this version does not name.
Trait Implementations§
Source§impl Clone for Hacktivity
impl Clone for Hacktivity
Source§impl Debug for Hacktivity
impl Debug for Hacktivity
Source§impl Default for Hacktivity
impl Default for Hacktivity
Source§impl<'de> Deserialize<'de> for Hacktivity
impl<'de> Deserialize<'de> for Hacktivity
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 Hacktivity
impl RefUnwindSafe for Hacktivity
impl Send for Hacktivity
impl Sync for Hacktivity
impl Unpin for Hacktivity
impl UnsafeUnpin for Hacktivity
impl UnwindSafe for Hacktivity
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