pub struct NcDimension {
pub name: String,
pub size: u64,
pub is_unlimited: bool,
}Expand description
A NetCDF dimension.
Fields§
§name: String§size: u64§is_unlimited: boolTrait Implementations§
Source§impl Clone for NcDimension
impl Clone for NcDimension
Source§fn clone(&self) -> NcDimension
fn clone(&self) -> NcDimension
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 NcDimension
impl Debug for NcDimension
impl Eq for NcDimension
Source§impl PartialEq for NcDimension
impl PartialEq for NcDimension
impl StructuralPartialEq for NcDimension
Auto Trait Implementations§
impl Freeze for NcDimension
impl RefUnwindSafe for NcDimension
impl Send for NcDimension
impl Sync for NcDimension
impl Unpin for NcDimension
impl UnsafeUnpin for NcDimension
impl UnwindSafe for NcDimension
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