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