pub struct V1Environment {
pub outside: Option<V1EnvironmentOutside>,
pub inside: Option<V1EnvironmentInside>,
pub water: Option<V1EnvironmentWater>,
pub depth: Option<V1EnvironmentDepth>,
pub current: Option<V1EnvironmentCurrent>,
pub tide: Option<V1EnvironmentTide>,
pub heave: Option<V1NumberValue>,
pub wind: Option<V1EnvironmentWind>,
pub time: Option<V1EnvironmentTime>,
pub mode: Option<V1EnvironmentMode>,
}
Fields§
§outside: Option<V1EnvironmentOutside>
§inside: Option<V1EnvironmentInside>
§water: Option<V1EnvironmentWater>
§depth: Option<V1EnvironmentDepth>
§current: Option<V1EnvironmentCurrent>
§tide: Option<V1EnvironmentTide>
§heave: Option<V1NumberValue>
§wind: Option<V1EnvironmentWind>
§time: Option<V1EnvironmentTime>
§mode: Option<V1EnvironmentMode>
Implementations§
Source§impl V1Environment
impl V1Environment
pub fn builder() -> V1EnvironmentBuilder
pub fn update(&mut self, path: &mut Vec<&str>, value: &Value)
pub fn get_f64_for_path( &self, path: &mut Vec<&str>, ) -> Result<f64, SignalKGetError>
Trait Implementations§
Source§impl Clone for V1Environment
impl Clone for V1Environment
Source§fn clone(&self) -> V1Environment
fn clone(&self) -> V1Environment
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 V1Environment
impl Debug for V1Environment
Source§impl Default for V1Environment
impl Default for V1Environment
Source§fn default() -> V1Environment
fn default() -> V1Environment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for V1Environment
impl<'de> Deserialize<'de> for V1Environment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for V1Environment
impl PartialEq for V1Environment
Source§impl Serialize for V1Environment
impl Serialize for V1Environment
impl StructuralPartialEq for V1Environment
Auto Trait Implementations§
impl Freeze for V1Environment
impl RefUnwindSafe for V1Environment
impl Send for V1Environment
impl Sync for V1Environment
impl Unpin for V1Environment
impl UnwindSafe for V1Environment
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