pub struct Derivatives {
pub unknowns: Vec<Fmi2VariableDependency>,
}Fields§
§unknowns: Vec<Fmi2VariableDependency>Trait Implementations§
Source§impl Debug for Derivatives
impl Debug for Derivatives
Source§impl Default for Derivatives
impl Default for Derivatives
Source§fn default() -> Derivatives
fn default() -> Derivatives
Returns the “default value” for a type. Read more
Source§impl PartialEq for Derivatives
impl PartialEq for Derivatives
Source§impl<'__input> XmlRead<'__input> for Derivatives
impl<'__input> XmlRead<'__input> for Derivatives
Source§impl XmlWrite for Derivatives
impl XmlWrite for Derivatives
impl StructuralPartialEq for Derivatives
Auto Trait Implementations§
impl Freeze for Derivatives
impl RefUnwindSafe for Derivatives
impl Send for Derivatives
impl Sync for Derivatives
impl Unpin for Derivatives
impl UnwindSafe for Derivatives
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