pub struct OutputData {
pub duration_ms: u64,
pub data: Vec<OutputDataInner>,
}Fields§
§duration_ms: u64§data: Vec<OutputDataInner>Trait Implementations§
Source§impl Debug for OutputData
impl Debug for OutputData
Source§impl<'__de, __A> Decode<'__de, Binary, __A> for OutputDatawhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Binary, __A> for OutputDatawhere
__A: Allocator,
Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§impl<'__de, __A> Decode<'__de, Text, __A> for OutputDatawhere
__A: Allocator,
impl<'__de, __A> Decode<'__de, Text, __A> for OutputDatawhere
__A: Allocator,
Source§const IS_BITWISE_DECODE: bool = false
const IS_BITWISE_DECODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§impl Encode<Binary> for OutputData
impl Encode<Binary> for OutputData
Source§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = OutputData
type Encode = OutputData
The underlying type being encoded. Read more
Source§impl Encode<Text> for OutputData
impl Encode<Text> for OutputData
Source§const IS_BITWISE_ENCODE: bool = false
const IS_BITWISE_ENCODE: bool = false
Whether the type is packed. Packed types can be bitwise copied if the
representation of the serialization format is identical to the memory
layout of the type. Read more
Source§type Encode = OutputData
type Encode = OutputData
The underlying type being encoded. Read more
Auto Trait Implementations§
impl Freeze for OutputData
impl RefUnwindSafe for OutputData
impl Send for OutputData
impl Sync for OutputData
impl Unpin for OutputData
impl UnwindSafe for OutputData
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