pub struct FixtureFile {
pub field_name: String,
pub filename: Option<String>,
pub content: Option<String>,
pub content_type: Option<String>,
pub content_encoding: Option<String>,
pub magic_bytes: Option<String>,
}Fields§
§field_name: String§filename: Option<String>§content: Option<String>§content_type: Option<String>§content_encoding: Option<String>§magic_bytes: Option<String>Trait Implementations§
Source§impl Clone for FixtureFile
impl Clone for FixtureFile
Source§fn clone(&self) -> FixtureFile
fn clone(&self) -> FixtureFile
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 FixtureFile
impl Debug for FixtureFile
Source§impl<'de> Deserialize<'de> for FixtureFile
impl<'de> Deserialize<'de> for FixtureFile
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 FixtureFile
impl RefUnwindSafe for FixtureFile
impl Send for FixtureFile
impl Sync for FixtureFile
impl Unpin for FixtureFile
impl UnsafeUnpin for FixtureFile
impl UnwindSafe for FixtureFile
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