Struct nvapi_sys::Array
[−]
[src]
pub struct Array<T>(pub T);
Hacks a Debug
impl onto large arrays.
Methods
impl<T> Array<T>
[src]
pub fn inner(&self) -> &T
[src]
pub fn inner_mut(&mut self) -> &mut T
[src]
pub fn into_inner(self) -> T
[src]
Trait Implementations
impl<T: Copy> Copy for Array<T>
[src]
impl<T: Clone> Clone for Array<T>
[src]
fn clone(&self) -> Array<T>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<T> Deref for Array<T>
[src]
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &Self::Target
[src]
Dereferences the value.