Trait Ptr

Source
pub trait Ptr {
    type RB;

    // Required method
    fn ptr() -> *const Self::RB;
}

Required Associated Types§

Source

type RB

RegisterBlock structure

Required Methods§

Source

fn ptr() -> *const Self::RB

Return the pointer to the register block

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§