#[repr(C)]pub struct NSTDRangeI64 {
pub start: NSTDInt64,
pub end: NSTDInt64,
}Available on crate feature
core only.Expand description
A 64-bit signed numerical range.
Fields§
§start: NSTDInt64The lower bound of the range.
end: NSTDInt64The higher bound of the range.
Trait Implementations§
Source§impl Clone for NSTDRangeI64
impl Clone for NSTDRangeI64
Source§fn clone(&self) -> NSTDRangeI64
fn clone(&self) -> NSTDRangeI64
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 moreimpl Copy for NSTDRangeI64
Auto Trait Implementations§
impl Freeze for NSTDRangeI64
impl RefUnwindSafe for NSTDRangeI64
impl Send for NSTDRangeI64
impl Sync for NSTDRangeI64
impl Unpin for NSTDRangeI64
impl UnwindSafe for NSTDRangeI64
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