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