pub struct FinishFileGeneration {
pub generation_id: i64,
pub error: Error,
}
Expand description
Finishes the file generation
Fields§
§generation_id: i64
The identifier of the generation process
error: Error
If set, means that file generation has failed and should be terminated
Trait Implementations§
Source§impl Clone for FinishFileGeneration
impl Clone for FinishFileGeneration
Source§fn clone(&self) -> FinishFileGeneration
fn clone(&self) -> FinishFileGeneration
Returns a copy 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 FinishFileGeneration
impl Debug for FinishFileGeneration
Source§impl<'de> Deserialize<'de> for FinishFileGeneration
impl<'de> Deserialize<'de> for FinishFileGeneration
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
Source§impl Method for FinishFileGeneration
impl Method for FinishFileGeneration
Auto Trait Implementations§
impl Freeze for FinishFileGeneration
impl RefUnwindSafe for FinishFileGeneration
impl Send for FinishFileGeneration
impl Sync for FinishFileGeneration
impl Unpin for FinishFileGeneration
impl UnwindSafe for FinishFileGeneration
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