pub enum TypeDefinition {
Show 15 variants
Float32(Float32Type),
Float64(Float64Type),
Int8(Int8Type),
UInt8(UInt8Type),
Int16(Int16Type),
UInt16(UInt16Type),
Int32(Int32Type),
UInt32(UInt32Type),
Int64(Int64Type),
UInt64(UInt64Type),
Boolean(BooleanType),
String(StringType),
Binary(BinaryType),
Enumeration(EnumerationType),
Clock(ClockType),
}Variants§
Float32(Float32Type)
Float64(Float64Type)
Int8(Int8Type)
UInt8(UInt8Type)
Int16(Int16Type)
UInt16(UInt16Type)
Int32(Int32Type)
UInt32(UInt32Type)
Int64(Int64Type)
UInt64(UInt64Type)
Boolean(BooleanType)
String(StringType)
Binary(BinaryType)
Enumeration(EnumerationType)
Clock(ClockType)
Trait Implementations§
Source§impl Debug for TypeDefinition
impl Debug for TypeDefinition
Source§impl PartialEq for TypeDefinition
impl PartialEq for TypeDefinition
Source§impl<'__input> XmlRead<'__input> for TypeDefinition
impl<'__input> XmlRead<'__input> for TypeDefinition
Source§impl XmlWrite for TypeDefinition
impl XmlWrite for TypeDefinition
impl StructuralPartialEq for TypeDefinition
Auto Trait Implementations§
impl Freeze for TypeDefinition
impl RefUnwindSafe for TypeDefinition
impl Send for TypeDefinition
impl Sync for TypeDefinition
impl Unpin for TypeDefinition
impl UnwindSafe for TypeDefinition
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