pub struct RawContent {
pub size: i64,
pub mime_type: Option<String>,
pub text: Option<String>,
}Fields§
§size: i64§mime_type: Option<String>§text: Option<String>Trait Implementations§
Source§impl Debug for RawContent
impl Debug for RawContent
Source§impl Default for RawContent
impl Default for RawContent
Source§fn default() -> RawContent
fn default() -> RawContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RawContent
impl<'de> Deserialize<'de> for RawContent
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 RawContent
impl RefUnwindSafe for RawContent
impl Send for RawContent
impl Sync for RawContent
impl Unpin for RawContent
impl UnsafeUnpin for RawContent
impl UnwindSafe for RawContent
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