pub struct RawAemoFile {
pub header: AemoHeader,
pub data: HashMap<FileKey, Vec<StringRecord>>,
}
Fields§
§header: AemoHeader
§data: HashMap<FileKey, Vec<StringRecord>>
Implementations§
Source§impl RawAemoFile
impl RawAemoFile
pub fn from_bufread(br: impl Read) -> Result<Self, Error>
Trait Implementations§
Source§impl Clone for RawAemoFile
impl Clone for RawAemoFile
Source§fn clone(&self) -> RawAemoFile
fn clone(&self) -> RawAemoFile
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 moreAuto Trait Implementations§
impl Freeze for RawAemoFile
impl RefUnwindSafe for RawAemoFile
impl Send for RawAemoFile
impl Sync for RawAemoFile
impl Unpin for RawAemoFile
impl UnwindSafe for RawAemoFile
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