pub struct StoredFile {
pub object_id: ObjectId,
pub file_name: String,
pub media_type: String,
pub transport_kind: Option<String>,
pub bytes: Vec<u8>,
pub enveloped: bool,
}Expand description
A decoded Kweb application file payload.
Fields§
§object_id: ObjectId§file_name: String§media_type: String§transport_kind: Option<String>§bytes: Vec<u8>§enveloped: boolFalse only for historical raw object payloads without an envelope.
Trait Implementations§
Source§impl Clone for StoredFile
impl Clone for StoredFile
Source§fn clone(&self) -> StoredFile
fn clone(&self) -> StoredFile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StoredFile
impl Debug for StoredFile
impl Eq for StoredFile
Source§impl PartialEq for StoredFile
impl PartialEq for StoredFile
impl StructuralPartialEq for StoredFile
Auto Trait Implementations§
impl Freeze for StoredFile
impl RefUnwindSafe for StoredFile
impl Send for StoredFile
impl Sync for StoredFile
impl Unpin for StoredFile
impl UnsafeUnpin for StoredFile
impl UnwindSafe for StoredFile
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