pub struct FrameIndex(/* private fields */);Trait Implementations§
Source§impl Clone for FrameIndex
impl Clone for FrameIndex
Source§fn clone(&self) -> FrameIndex
fn clone(&self) -> FrameIndex
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 moreSource§impl Converter<FrameIndex, Rt> for BitConverter
impl Converter<FrameIndex, Rt> for BitConverter
Source§impl Converter<Rt, FrameIndex> for BitConverter
impl Converter<Rt, FrameIndex> for BitConverter
Source§impl ConvertibleTo<FrameIndex> for Rt
impl ConvertibleTo<FrameIndex> for Rt
Source§impl ConvertibleTo<Rt> for FrameIndex
impl ConvertibleTo<Rt> for FrameIndex
impl Copy for FrameIndex
Source§impl Debug for FrameIndex
impl Debug for FrameIndex
Source§impl Display for FrameIndex
impl Display for FrameIndex
impl Eq for FrameIndex
Source§impl From<FrameIndex> for u32
impl From<FrameIndex> for u32
Source§fn from(index: FrameIndex) -> Self
fn from(index: FrameIndex) -> Self
Converts to this type from the input type.
Source§impl From<FrameIndex> for u64
impl From<FrameIndex> for u64
Source§fn from(index: FrameIndex) -> Self
fn from(index: FrameIndex) -> Self
Converts to this type from the input type.
Source§impl From<FrameIndex> for usize
impl From<FrameIndex> for usize
Source§fn from(index: FrameIndex) -> Self
fn from(index: FrameIndex) -> Self
Converts to this type from the input type.
Source§impl From<FrameIndex> for i64
impl From<FrameIndex> for i64
Source§fn from(index: FrameIndex) -> Self
fn from(index: FrameIndex) -> Self
Converts to this type from the input type.
Source§impl From<FrameIndex> for f64
impl From<FrameIndex> for f64
Source§fn from(index: FrameIndex) -> Self
fn from(index: FrameIndex) -> Self
Converts to this type from the input type.
Source§impl From<u8> for FrameIndex
impl From<u8> for FrameIndex
Source§impl From<u16> for FrameIndex
impl From<u16> for FrameIndex
Source§impl Hash for FrameIndex
impl Hash for FrameIndex
Source§impl Ord for FrameIndex
impl Ord for FrameIndex
Source§fn cmp(&self, other: &FrameIndex) -> Ordering
fn cmp(&self, other: &FrameIndex) -> Ordering
1.21.0 (const: unstable) · 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 FrameIndex
impl PartialEq for FrameIndex
Source§fn eq(&self, other: &FrameIndex) -> bool
fn eq(&self, other: &FrameIndex) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for FrameIndex
impl PartialOrd for FrameIndex
impl StructuralPartialEq for FrameIndex
Source§impl TryFrom<FrameIndex> for i32
impl TryFrom<FrameIndex> for i32
Source§type Error = CoordinateError
type Error = CoordinateError
The type returned in the event of a conversion error.
Source§impl TryFrom<i8> for FrameIndex
impl TryFrom<i8> for FrameIndex
Source§impl TryFrom<i16> for FrameIndex
impl TryFrom<i16> for FrameIndex
Source§impl TryFrom<i32> for FrameIndex
impl TryFrom<i32> for FrameIndex
Source§impl TryFrom<i64> for FrameIndex
impl TryFrom<i64> for FrameIndex
Source§impl TryFrom<u32> for FrameIndex
impl TryFrom<u32> for FrameIndex
Source§impl TryFrom<u64> for FrameIndex
impl TryFrom<u64> for FrameIndex
Auto Trait Implementations§
impl Freeze for FrameIndex
impl RefUnwindSafe for FrameIndex
impl Send for FrameIndex
impl Sync for FrameIndex
impl Unpin for FrameIndex
impl UnsafeUnpin for FrameIndex
impl UnwindSafe for FrameIndex
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