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