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