pub struct PlotDataStride(/* private fields */);Expand description
Byte stride used by ImPlot item data access.
Use PlotDataStride::AUTO for contiguous data of the plotted value type,
or PlotDataStride::bytes for interleaved/custom layouts.
Implementations§
Trait Implementations§
Source§impl Clone for PlotDataStride
impl Clone for PlotDataStride
Source§fn clone(&self) -> PlotDataStride
fn clone(&self) -> PlotDataStride
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 moreimpl Copy for PlotDataStride
Source§impl Debug for PlotDataStride
impl Debug for PlotDataStride
Source§impl Default for PlotDataStride
impl Default for PlotDataStride
impl Eq for PlotDataStride
Source§impl PartialEq for PlotDataStride
impl PartialEq for PlotDataStride
Source§fn eq(&self, other: &PlotDataStride) -> bool
fn eq(&self, other: &PlotDataStride) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlotDataStride
Auto Trait Implementations§
impl Freeze for PlotDataStride
impl RefUnwindSafe for PlotDataStride
impl Send for PlotDataStride
impl Sync for PlotDataStride
impl Unpin for PlotDataStride
impl UnsafeUnpin for PlotDataStride
impl UnwindSafe for PlotDataStride
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