[−][src]Enum netcdf::attribute::AttrValue
Holds the attribute value which can be inserted and returned from the file
Variants
Uchar(u8)Schar(i8)Ushort(u16)Short(i16)Uint(u32)Int(i32)Ulonglong(u64)Longlong(i64)Float(f32)Double(f64)Str(String)Trait Implementations
impl Clone for AttrValue[src]
impl Debug for AttrValue[src]
impl<'_> From<&'_ str> for AttrValue[src]
impl From<String> for AttrValue[src]
impl From<Vec<f32>> for AttrValue[src]
impl From<Vec<f64>> for AttrValue[src]
impl From<Vec<i16>> for AttrValue[src]
impl From<Vec<i32>> for AttrValue[src]
impl From<Vec<i64>> for AttrValue[src]
impl From<Vec<i8>> for AttrValue[src]
impl From<Vec<u16>> for AttrValue[src]
impl From<Vec<u32>> for AttrValue[src]
impl From<Vec<u64>> for AttrValue[src]
impl From<Vec<u8>> for AttrValue[src]
impl From<f32> for AttrValue[src]
impl From<f64> for AttrValue[src]
impl From<i16> for AttrValue[src]
impl From<i32> for AttrValue[src]
impl From<i64> for AttrValue[src]
impl From<i8> for AttrValue[src]
impl From<u16> for AttrValue[src]
impl From<u32> for AttrValue[src]
impl From<u64> for AttrValue[src]
impl From<u8> for AttrValue[src]
impl PartialEq<AttrValue> for AttrValue[src]
impl StructuralPartialEq for AttrValue[src]
Auto Trait Implementations
impl RefUnwindSafe for AttrValue
impl Send for AttrValue
impl Sync for AttrValue
impl Unpin for AttrValue
impl UnwindSafe for AttrValue
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Pointable for T[src]
const ALIGN: usize[src]
type Init = T
The type for initializers.
unsafe fn init(init: <T as Pointable>::Init) -> usize[src]
unsafe fn deref<'a>(ptr: usize) -> &'a T[src]
unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T[src]
unsafe fn drop(ptr: usize)[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,