#[repr(C)]pub struct grib_values {
pub name: *const c_char,
pub type_: c_int,
pub long_value: c_long,
pub double_value: f64,
pub string_value: *const c_char,
pub error: c_int,
pub has_value: c_int,
pub equal: c_int,
pub next: *mut grib_values,
}Fields§
§name: *const c_char§type_: c_int§long_value: c_long§double_value: f64§string_value: *const c_char§error: c_int§has_value: c_int§equal: c_int§next: *mut grib_valuesTrait Implementations§
Source§impl Clone for grib_values
impl Clone for grib_values
Source§fn clone(&self) -> grib_values
fn clone(&self) -> grib_values
Returns a duplicate of the value. Read more
1.0.0 · 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 grib_values
impl Debug for grib_values
impl Copy for grib_values
Auto Trait Implementations§
impl Freeze for grib_values
impl RefUnwindSafe for grib_values
impl !Send for grib_values
impl !Sync for grib_values
impl Unpin for grib_values
impl UnwindSafe for grib_values
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