pub struct MemoryFile {
pub modified: SystemTime,
pub data: Vec<u8>,
}
Expand description
An in-memory file.
Fields§
§modified: SystemTime
When the file was last modified.
data: Vec<u8>
Raw data
Trait Implementations§
Source§impl Clone for MemoryFile
impl Clone for MemoryFile
Source§fn clone(&self) -> MemoryFile
fn clone(&self) -> MemoryFile
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 moreSource§impl Debug for MemoryFile
impl Debug for MemoryFile
Source§impl<'de> Deserialize<'de> for MemoryFile
impl<'de> Deserialize<'de> for MemoryFile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MemoryFile
impl RefUnwindSafe for MemoryFile
impl Send for MemoryFile
impl Sync for MemoryFile
impl Unpin for MemoryFile
impl UnwindSafe for MemoryFile
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