pub struct TensorResult {
pub result_type: String,
pub data: Value,
pub coordinates: Vec<String>,
pub success: bool,
pub error: Option<String>,
}Fields§
§result_type: String§data: Value§coordinates: Vec<String>§success: bool§error: Option<String>Trait Implementations§
Source§impl Debug for TensorResult
impl Debug for TensorResult
Source§impl<'de> Deserialize<'de> for TensorResult
impl<'de> Deserialize<'de> for TensorResult
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 TensorResult
impl RefUnwindSafe for TensorResult
impl Send for TensorResult
impl Sync for TensorResult
impl Unpin for TensorResult
impl UnwindSafe for TensorResult
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