#[repr(C)]
pub union FelicaFSUnion {
pub fs: FelicaFileSystem,
pub dump: [u8; 504],
}Expand description
Union which represents filesystem in junction with plain data dump
Fields§
§fs: FelicaFileSystem§dump: [u8; 504]Trait Implementations§
Source§impl Clone for FelicaFSUnion
impl Clone for FelicaFSUnion
Source§fn clone(&self) -> FelicaFSUnion
fn clone(&self) -> FelicaFSUnion
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 moreimpl Copy for FelicaFSUnion
Auto Trait Implementations§
impl Freeze for FelicaFSUnion
impl RefUnwindSafe for FelicaFSUnion
impl Send for FelicaFSUnion
impl Sync for FelicaFSUnion
impl Unpin for FelicaFSUnion
impl UnwindSafe for FelicaFSUnion
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