[−][src]Enum multipart::server::save::SavedData
A saved field's data container (in memory or on disk)
Variants
Text(String)
Validated UTF-8 text data.
Bytes(Vec<u8>)
Binary data.
File(PathBuf, u64)
A path to a file on the filesystem and its size as written by multipart
.
Methods
impl SavedData
[src]
pub fn readable(&self) -> Result<DataReader>
[src]
Get an adapter for this data which implements Read
.
If the data is in a file, the file is opened in read-only mode.
pub fn size(&self) -> u64
[src]
Get the size of the data, in memory or on disk.
Note
The size on disk may not match the size of the file if it is externally modified.
pub fn is_memory(&self) -> bool
[src]
Returns true
if the data is known to be in memory (Text | Bytes
)
Trait Implementations
impl From<String> for SavedData
[src]
impl From<Vec<u8>> for SavedData
[src]
impl Debug for SavedData
[src]
Auto Trait Implementations
impl Unpin for SavedData
impl Sync for SavedData
impl Send for SavedData
impl UnwindSafe for SavedData
impl RefUnwindSafe for SavedData
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,