pub enum FixmlComponentAttributes {
Xml,
Block {
is_repeating: bool,
is_implicit: bool,
is_optimized: bool,
},
Message,
}Expand description
Component type (FIXML-specific information).
Variants§
Trait Implementations§
source§impl Clone for FixmlComponentAttributes
impl Clone for FixmlComponentAttributes
source§fn clone(&self) -> FixmlComponentAttributes
fn clone(&self) -> FixmlComponentAttributes
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for FixmlComponentAttributes
impl Debug for FixmlComponentAttributes
source§impl PartialEq for FixmlComponentAttributes
impl PartialEq for FixmlComponentAttributes
source§fn eq(&self, other: &FixmlComponentAttributes) -> bool
fn eq(&self, other: &FixmlComponentAttributes) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FixmlComponentAttributes
Auto Trait Implementations§
impl RefUnwindSafe for FixmlComponentAttributes
impl Send for FixmlComponentAttributes
impl Sync for FixmlComponentAttributes
impl Unpin for FixmlComponentAttributes
impl UnwindSafe for FixmlComponentAttributes
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