pub struct FindingEventInput<'a> {
pub kind: &'a str,
pub finding_id: &'a str,
pub actor_id: &'a str,
pub actor_type: &'a str,
pub reason: &'a str,
pub before_hash: &'a str,
pub after_hash: &'a str,
pub payload: Value,
pub caveats: Vec<String>,
}Fields§
§kind: &'a str§finding_id: &'a str§actor_id: &'a str§actor_type: &'a str§reason: &'a str§before_hash: &'a str§after_hash: &'a str§payload: Value§caveats: Vec<String>Auto Trait Implementations§
impl<'a> Freeze for FindingEventInput<'a>
impl<'a> RefUnwindSafe for FindingEventInput<'a>
impl<'a> Send for FindingEventInput<'a>
impl<'a> Sync for FindingEventInput<'a>
impl<'a> Unpin for FindingEventInput<'a>
impl<'a> UnsafeUnpin for FindingEventInput<'a>
impl<'a> UnwindSafe for FindingEventInput<'a>
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