pub struct FileContentResponse {
pub file_type: String,
pub filename: String,
pub title: String,
pub typ: String,
pub content: String,
}
Fields§
§file_type: String
§filename: String
§title: String
§typ: String
§content: String
Trait Implementations§
Source§impl Clone for FileContentResponse
impl Clone for FileContentResponse
Source§fn clone(&self) -> FileContentResponse
fn clone(&self) -> FileContentResponse
Returns a duplicate 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 FileContentResponse
impl Debug for FileContentResponse
Source§impl<'de> Deserialize<'de> for FileContentResponse
impl<'de> Deserialize<'de> for FileContentResponse
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 FileContentResponse
impl RefUnwindSafe for FileContentResponse
impl Send for FileContentResponse
impl Sync for FileContentResponse
impl Unpin for FileContentResponse
impl UnwindSafe for FileContentResponse
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