pub unsafe fn ie_infer_request_get_blob(
    infer_request: *mut ie_infer_request_t,
    name: *const c_char,
    blob: *mut *mut ie_blob_t
) -> IEStatusCode
Expand description

@brief Gets input/output data for inference @ingroup InferRequest @param infer_request A pointer to ie_infer_request_t instance. @param name Name of input or output blob. @param blob A pointer to input or output blob. The type of Blob must match the network input precision and size. @return Status code of the operation: OK(0) for success.