Skip to main content

Source

Struct Source 

Source
#[repr(align(16))]
pub struct Source<T>(pub T);
Available on crate feature cgb only.
Expand description

Storage the copier can read, aligned as it needs.

The hardware ignores the low four bits of both addresses, so an unaligned source would be read from the wrong place rather than refused. copy and stream check for it instead, and this is how the check is passed: a [Tile; N] is byte-aligned and lands wherever the linker puts it.

static TILES: hdma::Source<[Tile; 64]> = hdma::Source([..]);

Tuple Fields§

§0: T

Auto Trait Implementations§

§

impl<T> BankSafe for Source<T>
where T: BankSafe,

§

impl<T> Freeze for Source<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Source<T>
where T: RefUnwindSafe,

§

impl<T> Send for Source<T>
where T: Send,

§

impl<T> Sync for Source<T>
where T: Sync,

§

impl<T> Unpin for Source<T>
where T: Unpin,

§

impl<T> UnsafeUnpin for Source<T>
where T: UnsafeUnpin,

§

impl<T> UnwindSafe for Source<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.