pub struct InputFileGenerated {
pub original_path: String,
pub conversion: String,
pub expected_size: i32,
}
Expand description
A file generated by the client
Fields§
§original_path: String
Local path to a file from which the file is generated; may be empty if there is no such file
conversion: String
String specifying the conversion applied to the original file; should be persistent across application restarts
expected_size: i32
Expected size of the generated file; 0 if unknown
Trait Implementations§
Source§impl Clone for InputFileGenerated
impl Clone for InputFileGenerated
Source§fn clone(&self) -> InputFileGenerated
fn clone(&self) -> InputFileGenerated
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 InputFileGenerated
impl Debug for InputFileGenerated
Source§impl<'de> Deserialize<'de> for InputFileGenerated
impl<'de> Deserialize<'de> for InputFileGenerated
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 InputFileGenerated
impl RefUnwindSafe for InputFileGenerated
impl Send for InputFileGenerated
impl Sync for InputFileGenerated
impl Unpin for InputFileGenerated
impl UnwindSafe for InputFileGenerated
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