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