pub struct RollingRecordIndex(pub usize);Expand description
The index of a rolling record in the frame’s rolling record set.
Tuple Fields§
§0: usizeTrait Implementations§
Source§impl CanAllocate for RollingRecordIndex
impl CanAllocate for RollingRecordIndex
Source§impl Clone for RollingRecordIndex
impl Clone for RollingRecordIndex
Source§fn clone(&self) -> RollingRecordIndex
fn clone(&self) -> RollingRecordIndex
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RollingRecordIndex
impl Debug for RollingRecordIndex
Source§impl Default for RollingRecordIndex
impl Default for RollingRecordIndex
Source§fn default() -> RollingRecordIndex
fn default() -> RollingRecordIndex
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RollingRecordIndex
impl<'de> Deserialize<'de> for RollingRecordIndex
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RollingRecordIndex
impl Display for RollingRecordIndex
Source§impl From<RollingRecordIndex> for AddressingMode
impl From<RollingRecordIndex> for AddressingMode
Source§fn from(rec: RollingRecordIndex) -> Self
fn from(rec: RollingRecordIndex) -> Self
Converts to this type from the input type.
Source§impl From<RollingRecordIndex> for usize
impl From<RollingRecordIndex> for usize
Source§fn from(rec: RollingRecordIndex) -> Self
fn from(rec: RollingRecordIndex) -> Self
Converts to this type from the input type.
Source§impl From<usize> for RollingRecordIndex
impl From<usize> for RollingRecordIndex
Source§impl Hash for RollingRecordIndex
impl Hash for RollingRecordIndex
Source§impl Ord for RollingRecordIndex
impl Ord for RollingRecordIndex
Source§fn cmp(&self, other: &RollingRecordIndex) -> Ordering
fn cmp(&self, other: &RollingRecordIndex) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RollingRecordIndex
impl PartialEq for RollingRecordIndex
Source§impl PartialOrd for RollingRecordIndex
impl PartialOrd for RollingRecordIndex
Source§impl Serialize for RollingRecordIndex
impl Serialize for RollingRecordIndex
Source§impl TryFrom<AddressingMode> for RollingRecordIndex
impl TryFrom<AddressingMode> for RollingRecordIndex
impl Copy for RollingRecordIndex
impl Eq for RollingRecordIndex
impl StructuralPartialEq for RollingRecordIndex
Auto Trait Implementations§
impl Freeze for RollingRecordIndex
impl RefUnwindSafe for RollingRecordIndex
impl Send for RollingRecordIndex
impl Sync for RollingRecordIndex
impl Unpin for RollingRecordIndex
impl UnwindSafe for RollingRecordIndex
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more