pub struct ServiceResult {
pub dynamic_recursion_bypass: Vec<Sha256>,
pub sid: Sid,
pub sha256: Sha256,
pub service_name: String,
pub service_version: String,
pub service_tool_version: Option<String>,
pub expiry_ts: Option<DateTime<Utc>>,
pub result_summary: ResultSummary,
pub tags: HashMap<String, TagEntry>,
pub extracted_names: HashMap<Sha256, String>,
pub temporary_data: JsonMap,
}
Fields§
§dynamic_recursion_bypass: Vec<Sha256>
§sid: Sid
§sha256: Sha256
§service_name: String
§service_version: String
§service_tool_version: Option<String>
§expiry_ts: Option<DateTime<Utc>>
§result_summary: ResultSummary
§extracted_names: HashMap<Sha256, String>
§temporary_data: JsonMap
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ServiceResult
impl<'de> Deserialize<'de> for ServiceResult
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 ServiceResult
impl RefUnwindSafe for ServiceResult
impl Send for ServiceResult
impl Sync for ServiceResult
impl Unpin for ServiceResult
impl UnwindSafe for ServiceResult
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more