pub struct ZHashBox<'a, T> {
pub min_x: &'a T,
pub max_x: &'a T,
pub min_y: &'a T,
pub max_y: &'a T,
}
Fields
min_x: &'a T
max_x: &'a T
min_y: &'a T
max_y: &'a T
Trait Implementations
impl<'a, T> Copy for ZHashBox<'a, T>
Auto Trait Implementations
impl<'a, T> RefUnwindSafe for ZHashBox<'a, T> where
T: RefUnwindSafe,
impl<'a, T> Send for ZHashBox<'a, T> where
T: Sync,
impl<'a, T> Sync for ZHashBox<'a, T> where
T: Sync,
impl<'a, T> Unpin for ZHashBox<'a, T>
impl<'a, T> UnwindSafe for ZHashBox<'a, T> where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more