pub struct NoCompIDs { /* private fields */ }
Implementations§
Source§impl NoCompIDs
impl NoCompIDs
pub fn get_ref_comp_id(&self) -> Option<RefCompID>
pub fn get_ref_sub_id(&self) -> Option<RefSubID>
pub fn get_location_id(&self) -> Option<LocationID>
pub fn get_desk_id(&self) -> Option<DeskID>
pub fn get_status_value(&self) -> Option<StatusValue>
pub fn get_status_text(&self) -> Option<StatusText>
pub fn set_ref_comp_id( &mut self, value: RefCompID, ) -> Result<&Self, QuickFixError>
pub fn remove_ref_comp_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_ref_sub_id( &mut self, value: RefSubID, ) -> Result<&Self, QuickFixError>
pub fn remove_ref_sub_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_location_id( &mut self, value: LocationID, ) -> Result<&Self, QuickFixError>
pub fn remove_location_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_desk_id(&mut self, value: DeskID) -> Result<&Self, QuickFixError>
pub fn remove_desk_id(&mut self) -> Result<&Self, QuickFixError>
pub fn set_status_value( &mut self, value: StatusValue, ) -> Result<&Self, QuickFixError>
pub fn remove_status_value(&mut self) -> Result<&Self, QuickFixError>
pub fn set_status_text( &mut self, value: StatusText, ) -> Result<&Self, QuickFixError>
pub fn remove_status_text(&mut self) -> Result<&Self, QuickFixError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NoCompIDs
impl RefUnwindSafe for NoCompIDs
impl !Send for NoCompIDs
impl !Sync for NoCompIDs
impl Unpin for NoCompIDs
impl UnwindSafe for NoCompIDs
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