pub struct Fmi3ScheduledExecution {
pub annotations: Option<Annotations>,
pub model_identifier: String,
pub needs_execution_tool: Option<bool>,
pub can_be_instantiated_only_once_per_process: Option<bool>,
pub can_get_and_set_fmu_state: Option<bool>,
pub can_serialize_fmu_state: Option<bool>,
pub provides_directional_derivatives: Option<bool>,
pub provides_adjoint_derivatives: Option<bool>,
pub provides_per_element_dependencies: Option<bool>,
}
Fields§
§annotations: Option<Annotations>
§model_identifier: String
§needs_execution_tool: Option<bool>
§can_be_instantiated_only_once_per_process: Option<bool>
§can_get_and_set_fmu_state: Option<bool>
§can_serialize_fmu_state: Option<bool>
§provides_directional_derivatives: Option<bool>
§provides_adjoint_derivatives: Option<bool>
§provides_per_element_dependencies: Option<bool>
Trait Implementations§
Source§impl Debug for Fmi3ScheduledExecution
impl Debug for Fmi3ScheduledExecution
Source§impl Default for Fmi3ScheduledExecution
impl Default for Fmi3ScheduledExecution
Source§fn default() -> Fmi3ScheduledExecution
fn default() -> Fmi3ScheduledExecution
Returns the “default value” for a type. Read more
Source§impl PartialEq for Fmi3ScheduledExecution
impl PartialEq for Fmi3ScheduledExecution
Source§impl YaDeserialize for Fmi3ScheduledExecution
impl YaDeserialize for Fmi3ScheduledExecution
fn deserialize<R: Read>(reader: &mut Deserializer<R>) -> Result<Self, String>
Source§impl YaSerialize for Fmi3ScheduledExecution
impl YaSerialize for Fmi3ScheduledExecution
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace, ) -> Result<(Vec<OwnedAttribute>, Namespace), String>
impl StructuralPartialEq for Fmi3ScheduledExecution
Auto Trait Implementations§
impl Freeze for Fmi3ScheduledExecution
impl RefUnwindSafe for Fmi3ScheduledExecution
impl Send for Fmi3ScheduledExecution
impl Sync for Fmi3ScheduledExecution
impl Unpin for Fmi3ScheduledExecution
impl UnwindSafe for Fmi3ScheduledExecution
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more