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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AllocMethod
Source§impl Debug for AllocMethod
impl Debug for AllocMethod
impl Eq 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
Source§fn eq(&self, other: &AllocMethod) -> bool
fn eq(&self, other: &AllocMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.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 UnsafeUnpin 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