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