#[repr(u8)]pub enum Tfrtypeselect {
Read = 0,
Readmemory = 1,
Write = 2,
Writememory = 3,
}
Expand description
Data Transfer Type
Value on reset: 0
Variants§
Read = 0
0: Read transfer from the serial memory.Scrambling is not performed.Read at random location (fetch) in the serial flash memory is not possible.
Readmemory = 1
1: Read data transfer from the serial memory.If enabled, scrambling is performed.Read at random location (fetch) in the serial flash memory is possible.
Write = 2
2: Write transfer into the serial memory.Scrambling is not performed.
Writememory = 3
3: Write data transfer into the serial memory.If enabled, scrambling is performed.
Trait Implementations§
Source§impl Clone for Tfrtypeselect
impl Clone for Tfrtypeselect
Source§fn clone(&self) -> Tfrtypeselect
fn clone(&self) -> Tfrtypeselect
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 Tfrtypeselect
impl Debug for Tfrtypeselect
Source§impl From<Tfrtypeselect> for u8
impl From<Tfrtypeselect> for u8
Source§fn from(variant: Tfrtypeselect) -> Self
fn from(variant: Tfrtypeselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Tfrtypeselect
impl PartialEq for Tfrtypeselect
impl Copy for Tfrtypeselect
impl Eq for Tfrtypeselect
impl IsEnum for Tfrtypeselect
impl StructuralPartialEq for Tfrtypeselect
Auto Trait Implementations§
impl Freeze for Tfrtypeselect
impl RefUnwindSafe for Tfrtypeselect
impl Send for Tfrtypeselect
impl Sync for Tfrtypeselect
impl Unpin for Tfrtypeselect
impl UnwindSafe for Tfrtypeselect
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