pub struct ConstRowInfo<T> {
pub x1: i32,
pub x2: i32,
pub ptr: *const T,
}Expand description
Const version of row info.
Fields§
§x1: i32§x2: i32§ptr: *const TImplementations§
Trait Implementations§
Source§impl<T: Clone> Clone for ConstRowInfo<T>
impl<T: Clone> Clone for ConstRowInfo<T>
Source§fn clone(&self) -> ConstRowInfo<T>
fn clone(&self) -> ConstRowInfo<T>
Returns a duplicate 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<T: Debug> Debug for ConstRowInfo<T>
impl<T: Debug> Debug for ConstRowInfo<T>
impl<T: Copy> Copy for ConstRowInfo<T>
Auto Trait Implementations§
impl<T> Freeze for ConstRowInfo<T>
impl<T> RefUnwindSafe for ConstRowInfo<T>where
T: RefUnwindSafe,
impl<T> !Send for ConstRowInfo<T>
impl<T> !Sync for ConstRowInfo<T>
impl<T> Unpin for ConstRowInfo<T>
impl<T> UnwindSafe for ConstRowInfo<T>where
T: RefUnwindSafe,
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