pub struct StructuredScope {
pub asset_identifier: Option<String>,
pub asset_type: Option<String>,
pub eligible_for_bounty: Option<bool>,
pub eligible_for_submission: Option<bool>,
pub max_severity: Option<String>,
pub instruction: Option<String>,
pub created_at: Option<String>,
pub extra: BTreeMap<String, Value>,
}Expand description
See the HackerOne API reference for StructuredScope.
Fields§
§asset_identifier: Option<String>asset_identifier
asset_type: Option<String>asset_type
eligible_for_bounty: Option<bool>eligible_for_bounty
eligible_for_submission: Option<bool>eligible_for_submission
max_severity: Option<String>max_severity
instruction: Option<String>instruction
created_at: Option<String>created_at
extra: BTreeMap<String, Value>Fields the API returned that this version does not name.
Trait Implementations§
Source§impl Clone for StructuredScope
impl Clone for StructuredScope
Source§impl Debug for StructuredScope
impl Debug for StructuredScope
Source§impl Default for StructuredScope
impl Default for StructuredScope
Source§impl<'de> Deserialize<'de> for StructuredScope
impl<'de> Deserialize<'de> for StructuredScope
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 StructuredScope
impl RefUnwindSafe for StructuredScope
impl Send for StructuredScope
impl Sync for StructuredScope
impl Unpin for StructuredScope
impl UnsafeUnpin for StructuredScope
impl UnwindSafe for StructuredScope
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