pub struct FluxLinearParameters {
pub scene_emissivity: u16,
pub temperature_background: u16,
pub tau_window: u16,
pub temperatur_window: u16,
pub tau_atmosphere: u16,
pub temperature_atmosphere: u16,
pub reflection_window: u16,
pub temperature_reflection: u16,
}
Fields§
§scene_emissivity: u16
§temperature_background: u16
§tau_window: u16
§temperatur_window: u16
§tau_atmosphere: u16
§temperature_atmosphere: u16
§reflection_window: u16
§temperature_reflection: u16
Trait Implementations§
Source§impl Clone for FluxLinearParameters
impl Clone for FluxLinearParameters
Source§fn clone(&self) -> FluxLinearParameters
fn clone(&self) -> FluxLinearParameters
Returns a copy 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 FluxLinearParameters
impl Debug for FluxLinearParameters
Source§impl Default for FluxLinearParameters
impl Default for FluxLinearParameters
Source§fn default() -> FluxLinearParameters
fn default() -> FluxLinearParameters
Returns the “default value” for a type. Read more
Source§impl FromByteSlice for FluxLinearParameters
impl FromByteSlice for FluxLinearParameters
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> FluxLinearParameters
fn from_le_byte_slice(bytes: &[u8]) -> FluxLinearParameters
Deserialize the implementing type from a byte slice.
Source§impl Hash for FluxLinearParameters
impl Hash for FluxLinearParameters
Source§impl PartialEq for FluxLinearParameters
impl PartialEq for FluxLinearParameters
impl Copy for FluxLinearParameters
impl Eq for FluxLinearParameters
impl StructuralPartialEq for FluxLinearParameters
Auto Trait Implementations§
impl Freeze for FluxLinearParameters
impl RefUnwindSafe for FluxLinearParameters
impl Send for FluxLinearParameters
impl Sync for FluxLinearParameters
impl Unpin for FluxLinearParameters
impl UnwindSafe for FluxLinearParameters
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