pub struct Location {
pub bank: u32,
pub slot: u32,
}Expand description
A bank/slot address. Zero-indexed on the wire, one-indexed in the UI and in
every capture directory name — move_prog_8-13_to_7-16 puts 7, 12, 6, 15 on
the wire.
Fields§
§bank: u32§slot: u32Implementations§
Trait Implementations§
impl Copy for Location
impl Eq for Location
impl StructuralPartialEq for Location
Auto Trait Implementations§
impl Freeze for Location
impl RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnsafeUnpin for Location
impl UnwindSafe for Location
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