pub struct IncludeDirectory {
pub name: String,
pub annotations: Option<Fmi3Annotations>,
}Available on crate feature
fmi3 only.Expand description
Include directory for compilation
Fields§
§name: StringName/path of the include directory
annotations: Option<Fmi3Annotations>Optional annotations
Trait Implementations§
Source§impl Debug for IncludeDirectory
impl Debug for IncludeDirectory
Source§impl Default for IncludeDirectory
impl Default for IncludeDirectory
Source§fn default() -> IncludeDirectory
fn default() -> IncludeDirectory
Returns the “default value” for a type. Read more
Source§impl PartialEq for IncludeDirectory
impl PartialEq for IncludeDirectory
Source§impl<'__input> XmlRead<'__input> for IncludeDirectory
impl<'__input> XmlRead<'__input> for IncludeDirectory
Source§impl XmlWrite for IncludeDirectory
impl XmlWrite for IncludeDirectory
impl StructuralPartialEq for IncludeDirectory
Auto Trait Implementations§
impl Freeze for IncludeDirectory
impl RefUnwindSafe for IncludeDirectory
impl Send for IncludeDirectory
impl Sync for IncludeDirectory
impl Unpin for IncludeDirectory
impl UnwindSafe for IncludeDirectory
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