Struct assemblyline_models::datastore::result::ResponseBody
source · pub struct ResponseBody {
pub milestones: Milestone,
pub service_version: String,
pub service_name: String,
pub service_tool_version: Option<String>,
pub supplementary: Vec<File>,
pub extracted: Vec<File>,
pub service_context: Option<String>,
pub service_debug_info: Option<String>,
}
Expand description
Response Body of Result
Fields§
§milestones: Milestone
Milestone block
service_version: String
Version of the service
service_name: String
Name of the service that scanned the file
service_tool_version: Option<String>
Tool version of the service
supplementary: Vec<File>
List of supplementary files
extracted: Vec<File>
List of extracted files
service_context: Option<String>
Context about the service
service_debug_info: Option<String>
Debug info about the service
Trait Implementations§
source§impl Debug for ResponseBody
impl Debug for ResponseBody
source§impl Described<ElasticMeta> for ResponseBody
impl Described<ElasticMeta> for ResponseBody
source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
source§impl<'de> Deserialize<'de> for ResponseBody
impl<'de> Deserialize<'de> for ResponseBody
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 RefUnwindSafe for ResponseBody
impl Send for ResponseBody
impl Sync for ResponseBody
impl Unpin for ResponseBody
impl UnwindSafe for ResponseBody
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