pub struct NumericFeatureBufferArena { /* private fields */ }Implementations§
Source§impl NumericFeatureBufferArena
impl NumericFeatureBufferArena
pub fn new(store: NumericFeatureBufferStore) -> NumericFeatureBufferArena
pub fn manifests(&self) -> Result<Vec<NumericFeatureBufferManifest>, DataError>
pub fn bind_data_handle( &mut self, data_handle: u64, relations: &CoordinatorRelationSet, representation_id: &RepresentationId, ) -> Result<Vec<NumericFeatureBufferBinding>, DataError>
pub fn release_data_handle(&mut self, data_handle: u64) -> bool
pub fn bindings_for_data_handle( &self, data_handle: u64, ) -> Result<Vec<NumericFeatureBufferBinding>, DataError>
pub fn project_bound_relations( &self, data_handle: u64, feature_set_id: &str, relations: &CoordinatorRelationSet, source_id: Option<&SourceId>, columns: Option<&[String]>, ) -> Result<CoordinatorFeatureBlock, DataError>
pub fn project_bound_relations_f64( &self, data_handle: u64, feature_set_id: &str, relations: &CoordinatorRelationSet, source_id: Option<&SourceId>, columns: Option<&[String]>, ) -> Result<CoordinatorFeatureBlockF64, DataError>
Trait Implementations§
Source§impl Clone for NumericFeatureBufferArena
impl Clone for NumericFeatureBufferArena
Source§fn clone(&self) -> NumericFeatureBufferArena
fn clone(&self) -> NumericFeatureBufferArena
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 NumericFeatureBufferArena
impl Debug for NumericFeatureBufferArena
Source§impl Default for NumericFeatureBufferArena
impl Default for NumericFeatureBufferArena
Source§fn default() -> NumericFeatureBufferArena
fn default() -> NumericFeatureBufferArena
Returns the “default value” for a type. Read more
Source§impl PartialEq for NumericFeatureBufferArena
impl PartialEq for NumericFeatureBufferArena
Source§fn eq(&self, other: &NumericFeatureBufferArena) -> bool
fn eq(&self, other: &NumericFeatureBufferArena) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NumericFeatureBufferArena
Auto Trait Implementations§
impl Freeze for NumericFeatureBufferArena
impl RefUnwindSafe for NumericFeatureBufferArena
impl Send for NumericFeatureBufferArena
impl Sync for NumericFeatureBufferArena
impl Unpin for NumericFeatureBufferArena
impl UnsafeUnpin for NumericFeatureBufferArena
impl UnwindSafe for NumericFeatureBufferArena
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