pub struct NcGroup {
pub name: String,
pub dimensions: Vec<NcDimension>,
pub variables: Vec<NcVariable>,
pub attributes: Vec<NcAttribute>,
pub groups: Vec<NcGroup>,
}Expand description
A NetCDF group.
Fields§
§name: String§dimensions: Vec<NcDimension>§variables: Vec<NcVariable>§attributes: Vec<NcAttribute>§groups: Vec<NcGroup>Implementations§
Source§impl NcGroup
impl NcGroup
pub fn variable(&self, name: &str) -> Option<&NcVariable>
pub fn dimension(&self, name: &str) -> Option<&NcDimension>
pub fn coordinate_variable(&self, name: &str) -> Option<&NcVariable>
pub fn coordinate_variables(&self) -> impl Iterator<Item = &NcVariable>
pub fn attribute(&self, name: &str) -> Option<&NcAttribute>
pub fn group(&self, name: &str) -> Option<&NcGroup>
Trait Implementations§
impl StructuralPartialEq for NcGroup
Auto Trait Implementations§
impl Freeze for NcGroup
impl RefUnwindSafe for NcGroup
impl Send for NcGroup
impl Sync for NcGroup
impl Unpin for NcGroup
impl UnsafeUnpin for NcGroup
impl UnwindSafe for NcGroup
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