pub struct NcAttribute {
pub name: String,
pub value: NcAttrValue,
}Expand description
A NetCDF attribute.
Fields§
§name: String§value: NcAttrValueTrait Implementations§
Source§impl Clone for NcAttribute
impl Clone for NcAttribute
Source§fn clone(&self) -> NcAttribute
fn clone(&self) -> NcAttribute
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NcAttribute
impl Debug for NcAttribute
Source§impl PartialEq for NcAttribute
impl PartialEq for NcAttribute
impl StructuralPartialEq for NcAttribute
Auto Trait Implementations§
impl Freeze for NcAttribute
impl RefUnwindSafe for NcAttribute
impl Send for NcAttribute
impl Sync for NcAttribute
impl Unpin for NcAttribute
impl UnsafeUnpin for NcAttribute
impl UnwindSafe for NcAttribute
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more