pub struct CoordinatorHandleArena { /* private fields */ }Implementations§
Source§impl CoordinatorHandleArena
impl CoordinatorHandleArena
pub fn new( owner_controller: impl Into<String>, ) -> Result<CoordinatorHandleArena, DataError>
pub fn materialize( &self, envelope: &CoordinatorDataPlanEnvelope, request: &CoordinatorDataMaterializationRequest, ) -> Result<CoordinatorDataHandleRecord, DataError>
pub fn make_view( &self, data_handle: u64, view: &DataView, ) -> Result<CoordinatorDataViewRecord, DataError>
pub fn view_record(&self, handle: u64) -> Option<CoordinatorDataViewRecord>
pub fn view_identity( &self, handle: u64, ) -> Result<CoordinatorRelationSet, DataError>
pub fn data_identity( &self, handle: u64, ) -> Result<CoordinatorRelationSet, DataError>
pub fn release_handle(&self, handle: u64) -> bool
pub fn target_values( &self, view_handle: u64, target_table: &CoordinatorTargetTable, ) -> Result<CoordinatorTargetBlock, DataError>
pub fn multi_target_values( &self, view_handle: u64, target_tables: &[CoordinatorTargetTable], ) -> Result<CoordinatorMultiTargetBlock, DataError>
pub fn feature_values( &self, view_handle: u64, feature_table: &CoordinatorFeatureTable, ) -> Result<CoordinatorFeatureBlock, DataError>
pub fn handle_record(&self, handle: u64) -> Option<CoordinatorDataHandleRecord>
pub fn handle_records(&self) -> Vec<CoordinatorDataHandleRecord>
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for CoordinatorHandleArena
impl !RefUnwindSafe for CoordinatorHandleArena
impl !Sync for CoordinatorHandleArena
impl Send for CoordinatorHandleArena
impl Unpin for CoordinatorHandleArena
impl UnsafeUnpin for CoordinatorHandleArena
impl UnwindSafe for CoordinatorHandleArena
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