pub struct PanelUnitView<'a> { /* private fields */ }Expand description
Borrowed view of a single panel unit as a table.
Implementations§
Trait Implementations§
Source§impl TableView for PanelUnitView<'_>
impl TableView for PanelUnitView<'_>
Source§fn schema(&self) -> &CausalSchema
fn schema(&self) -> &CausalSchema
Immutable causal schema.
Source§fn column(&self, id: VariableId) -> Result<ColumnView<'_>, DataError>
fn column(&self, id: VariableId) -> Result<ColumnView<'_>, DataError>
Column view for
id. Read moreSource§fn float64_values(&self, id: VariableId) -> Result<Vec<f64>, DataError>
fn float64_values(&self, id: VariableId) -> Result<Vec<f64>, DataError>
Copy a column into an owned
f64 buffer. Read moreAuto Trait Implementations§
impl<'a> !RefUnwindSafe for PanelUnitView<'a>
impl<'a> !UnwindSafe for PanelUnitView<'a>
impl<'a> Freeze for PanelUnitView<'a>
impl<'a> Send for PanelUnitView<'a>
impl<'a> Sync for PanelUnitView<'a>
impl<'a> Unpin for PanelUnitView<'a>
impl<'a> UnsafeUnpin for PanelUnitView<'a>
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