pub struct DecodedField {
pub width: usize,
pub height: usize,
pub values: Vec<f32>,
pub aec_backend: Option<&'static str>,
}Expand description
Decoded field helper returned by high-level decoders.
Fields§
§width: usize§height: usize§values: Vec<f32>§aec_backend: Option<&'static str>For template 5.0=42 decoding, which backend was used: Some(“rust-aec-first” | “rust-aec”) or None if grib crate returned decoded data.
Trait Implementations§
Source§impl Clone for DecodedField
impl Clone for DecodedField
Source§fn clone(&self) -> DecodedField
fn clone(&self) -> DecodedField
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 moreAuto Trait Implementations§
impl Freeze for DecodedField
impl RefUnwindSafe for DecodedField
impl Send for DecodedField
impl Sync for DecodedField
impl Unpin for DecodedField
impl UnwindSafe for DecodedField
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