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 copy 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 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
Source§impl From<char> for BLASTranspose
impl From<char> for BLASTranspose
Source§impl PartialEq for BLASTranspose
impl PartialEq for BLASTranspose
Source§impl TryFrom<BLASTranspose> for char
impl TryFrom<BLASTranspose> for char
Source§impl TryFrom<BLASTranspose> for c_char
impl TryFrom<BLASTranspose> for c_char
impl Copy for BLASTranspose
impl Eq for BLASTranspose
impl Send for BLASTranspose
impl StructuralPartialEq for BLASTranspose
impl Sync for BLASTranspose
Auto Trait Implementations§
impl Freeze for BLASTranspose
impl RefUnwindSafe for BLASTranspose
impl Unpin 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