pub struct LayoutItem<'a>(/* private fields */);Expand description
An entry in a sequence of FIX field definitions.
Implementations§
Source§impl<'a> LayoutItem<'a>
impl<'a> LayoutItem<'a>
Sourcepub fn required(&self) -> bool
pub fn required(&self) -> bool
Returns true if self is required in order to have a valid definition
of its parent container, false otherwise.
Sourcepub fn kind(&self) -> LayoutItemKind<'_>
pub fn kind(&self) -> LayoutItemKind<'_>
Returns the LayoutItemKind of self.
Trait Implementations§
Source§impl<'a> Clone for LayoutItem<'a>
impl<'a> Clone for LayoutItem<'a>
Source§fn clone(&self) -> LayoutItem<'a>
fn clone(&self) -> LayoutItem<'a>
Returns a duplicate 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 moreAuto Trait Implementations§
impl<'a> Freeze for LayoutItem<'a>
impl<'a> RefUnwindSafe for LayoutItem<'a>
impl<'a> Send for LayoutItem<'a>
impl<'a> Sync for LayoutItem<'a>
impl<'a> Unpin for LayoutItem<'a>
impl<'a> UnwindSafe for LayoutItem<'a>
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