pub enum AutoloadKind {
Itcm,
Dtcm,
Unknown(u32),
}Expand description
Autoload kind.
Variants§
Itcm
Instruction TCM (Tightly Coupled Memory). Mainly used to make functions have fast and predictable load times.
Dtcm
Data TCM (Tightly Coupled Memory). Mainly used to make data have fast and predictable access times.
Unknown(u32)
Other autoload block of unknown purpose.
Trait Implementations§
Source§impl Clone for AutoloadKind
impl Clone for AutoloadKind
Source§fn clone(&self) -> AutoloadKind
fn clone(&self) -> AutoloadKind
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 AutoloadKind
impl Debug for AutoloadKind
Source§impl<'de> Deserialize<'de> for AutoloadKind
impl<'de> Deserialize<'de> for AutoloadKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for AutoloadKind
impl Display for AutoloadKind
Source§impl Ord for AutoloadKind
impl Ord for AutoloadKind
Source§impl PartialEq for AutoloadKind
impl PartialEq for AutoloadKind
Source§impl PartialOrd for AutoloadKind
impl PartialOrd for AutoloadKind
Source§impl Serialize for AutoloadKind
impl Serialize for AutoloadKind
impl Copy for AutoloadKind
impl Eq for AutoloadKind
impl StructuralPartialEq for AutoloadKind
Auto Trait Implementations§
impl Freeze for AutoloadKind
impl RefUnwindSafe for AutoloadKind
impl Send for AutoloadKind
impl Sync for AutoloadKind
impl Unpin for AutoloadKind
impl UnsafeUnpin for AutoloadKind
impl UnwindSafe for AutoloadKind
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