pub enum AllocMethod {
Automatic = 1,
Guarantor = 2,
Manual = 3,
}
Variants§
Implementations§
Source§impl AllocMethod
impl AllocMethod
pub const fn from_const_bytes(s: &[u8]) -> Result<Self, FixParseError>
Trait Implementations§
Source§impl Clone for AllocMethod
impl Clone for AllocMethod
Source§fn clone(&self) -> AllocMethod
fn clone(&self) -> AllocMethod
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 moreSource§impl Debug for AllocMethod
impl Debug for AllocMethod
Source§impl FromStr for AllocMethod
impl FromStr for AllocMethod
Source§impl Hash for AllocMethod
impl Hash for AllocMethod
Source§impl IntoFixValue for AllocMethod
impl IntoFixValue for AllocMethod
Source§impl PartialEq for AllocMethod
impl PartialEq for AllocMethod
impl Copy for AllocMethod
impl Eq for AllocMethod
impl StructuralPartialEq for AllocMethod
Auto Trait Implementations§
impl Freeze for AllocMethod
impl RefUnwindSafe for AllocMethod
impl Send for AllocMethod
impl Sync for AllocMethod
impl Unpin for AllocMethod
impl UnwindSafe for AllocMethod
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