pub struct EncodedOutput {
pub spikes: Vec<SpikeEvent>,
pub embeddings: Option<Vec<f32>>,
pub metadata: Option<EncodingMetadata>,
}Expand description
The standardized output of an encoder.
Fields§
§spikes: Vec<SpikeEvent>§embeddings: Option<Vec<f32>>§metadata: Option<EncodingMetadata>Implementations§
Source§impl EncodedOutput
impl EncodedOutput
Trait Implementations§
Source§impl Clone for EncodedOutput
impl Clone for EncodedOutput
Source§fn clone(&self) -> EncodedOutput
fn clone(&self) -> EncodedOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EncodedOutput
impl Debug for EncodedOutput
Source§impl Default for EncodedOutput
impl Default for EncodedOutput
Source§fn default() -> EncodedOutput
fn default() -> EncodedOutput
Returns the “default value” for a type. Read more
Source§impl PartialEq for EncodedOutput
impl PartialEq for EncodedOutput
impl StructuralPartialEq for EncodedOutput
Auto Trait Implementations§
impl Freeze for EncodedOutput
impl RefUnwindSafe for EncodedOutput
impl Send for EncodedOutput
impl Sync for EncodedOutput
impl Unpin for EncodedOutput
impl UnsafeUnpin for EncodedOutput
impl UnwindSafe for EncodedOutput
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