[−][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]
impl SavedDatapub 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<String> for SavedDataimpl From<Vec<u8>> for SavedData[src]
impl From<Vec<u8>> for SavedDataimpl Debug for SavedData[src]
impl Debug for SavedDataAuto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
🔬 This is a nightly-only experimental API. (
try_from)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> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T | [src] |
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error> | [src] |
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId | [src] |
impl<T> Typeable for T where
T: Any,
impl<T> Typeable for T where
T: Any, impl<T> DebugAny for T where
T: Any + Debug,
impl<T> DebugAny for T where
T: Any + Debug, impl<T> UnsafeAny for T where
T: Any,
impl<T> UnsafeAny for T where
T: Any,