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