pub struct NetCDF { /* private fields */ }Implementations§
Source§impl NetCDF
impl NetCDF
pub fn close(&mut self)
pub fn create(path: &str) -> Result<Self, NulError>
pub fn open(path: &str) -> Result<Self, NulError>
pub fn dimension_length(&self, name: &str) -> Result<usize, NulError>
pub fn try_dimension_length( &self, name: &str, ) -> Result<Option<usize>, NulError>
pub fn get_variable_attribute_text( &self, variable: &str, attr_name: &str, ) -> Result<String, NulError>
pub fn define_dimension( &mut self, name: &str, len: usize, ) -> Result<(), NulError>
pub fn end_definition(&mut self)
pub fn global(&mut self)
pub fn put_variable_attribute_text( &mut self, variable: &str, attr_name: &str, value: &str, ) -> Result<(), NulError>
Trait Implementations§
Source§impl DefineVariable for NetCDF
impl DefineVariable for NetCDF
Source§impl GetVariable for NetCDF
impl GetVariable for NetCDF
Source§impl PutVariable for NetCDF
impl PutVariable for NetCDF
Auto Trait Implementations§
impl Freeze for NetCDF
impl RefUnwindSafe for NetCDF
impl Send for NetCDF
impl Sync for NetCDF
impl Unpin for NetCDF
impl UnsafeUnpin for NetCDF
impl UnwindSafe for NetCDF
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