pub struct Output {
pub data: Vec<f64>,
pub data_type: Option<String>,
pub byte_buffer: Option<ByteBuffer>,
pub result: Option<String>,
pub shape: Option<Vec<i32>>,
pub name: Option<String>,
}Fields§
§data: Vec<f64>§data_type: Option<String>The output data type.
byte_buffer: Option<ByteBuffer>§result: Option<String>The output result.
shape: Option<Vec<i32>>§name: Option<String>The output name.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Output
impl<'de> Deserialize<'de> for Output
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
impl StructuralPartialEq for Output
Auto Trait Implementations§
impl Freeze for Output
impl RefUnwindSafe for Output
impl Send for Output
impl Sync for Output
impl Unpin for Output
impl UnsafeUnpin for Output
impl UnwindSafe for Output
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