pub enum BLASTranspose {
Undefined = -1,
NoTrans = 111,
Trans = 112,
ConjTrans = 113,
ConjNoTrans = 114,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BLASTranspose
impl Clone for BLASTranspose
Source§fn clone(&self) -> BLASTranspose
fn clone(&self) -> BLASTranspose
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 BLASTranspose
Source§impl Debug for BLASTranspose
impl Debug for BLASTranspose
Source§impl Default for BLASTranspose
impl Default for BLASTranspose
Source§fn default() -> BLASTranspose
fn default() -> BLASTranspose
Returns the “default value” for a type. Read more
impl Eq for BLASTranspose
Source§impl From<char> for BLASTranspose
impl From<char> for BLASTranspose
Source§impl PartialEq for BLASTranspose
impl PartialEq for BLASTranspose
Source§fn eq(&self, other: &BLASTranspose) -> bool
fn eq(&self, other: &BLASTranspose) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Send for BLASTranspose
impl StructuralPartialEq for BLASTranspose
impl Sync for BLASTranspose
Source§impl TryFrom<BLASTranspose> for char
impl TryFrom<BLASTranspose> for char
Auto Trait Implementations§
impl Freeze for BLASTranspose
impl RefUnwindSafe for BLASTranspose
impl Unpin for BLASTranspose
impl UnsafeUnpin for BLASTranspose
impl UnwindSafe for BLASTranspose
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