pub struct Fmi3InterfaceType {
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 Fmi3InterfaceType
impl Debug for Fmi3InterfaceType
Source§impl Default for Fmi3InterfaceType
impl Default for Fmi3InterfaceType
Source§fn default() -> Fmi3InterfaceType
fn default() -> Fmi3InterfaceType
Returns the “default value” for a type. Read more
Source§impl PartialEq for Fmi3InterfaceType
impl PartialEq for Fmi3InterfaceType
Source§impl YaDeserialize for Fmi3InterfaceType
impl YaDeserialize for Fmi3InterfaceType
fn deserialize<R: Read>(reader: &mut Deserializer<R>) -> Result<Self, String>
Source§impl YaSerialize for Fmi3InterfaceType
impl YaSerialize for Fmi3InterfaceType
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 Fmi3InterfaceType
Auto Trait Implementations§
impl Freeze for Fmi3InterfaceType
impl RefUnwindSafe for Fmi3InterfaceType
impl Send for Fmi3InterfaceType
impl Sync for Fmi3InterfaceType
impl Unpin for Fmi3InterfaceType
impl UnwindSafe for Fmi3InterfaceType
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