pub struct Plot3DDataOffset(/* private fields */);Expand description
Sample-index offset used by ImPlot3D item data access.
ImPlot3D intentionally allows negative and out-of-range offsets for circular buffers, so this is a signed sample offset rather than a Rust slice index.
Implementations§
Trait Implementations§
Source§impl Clone for Plot3DDataOffset
impl Clone for Plot3DDataOffset
Source§fn clone(&self) -> Plot3DDataOffset
fn clone(&self) -> Plot3DDataOffset
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 Plot3DDataOffset
Source§impl Debug for Plot3DDataOffset
impl Debug for Plot3DDataOffset
Source§impl Default for Plot3DDataOffset
impl Default for Plot3DDataOffset
Source§fn default() -> Plot3DDataOffset
fn default() -> Plot3DDataOffset
Returns the “default value” for a type. Read more
impl Eq for Plot3DDataOffset
Source§impl PartialEq for Plot3DDataOffset
impl PartialEq for Plot3DDataOffset
Source§fn eq(&self, other: &Plot3DDataOffset) -> bool
fn eq(&self, other: &Plot3DDataOffset) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Plot3DDataOffset
Auto Trait Implementations§
impl Freeze for Plot3DDataOffset
impl RefUnwindSafe for Plot3DDataOffset
impl Send for Plot3DDataOffset
impl Sync for Plot3DDataOffset
impl Unpin for Plot3DDataOffset
impl UnsafeUnpin for Plot3DDataOffset
impl UnwindSafe for Plot3DDataOffset
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