pub struct BatchFile {
pub metadata: Option<BatchMetadata>,
pub operations: Vec<BatchOperation>,
}Expand description
Batch file format containing multiple operations
Fields§
§metadata: Option<BatchMetadata>Metadata about this batch
operations: Vec<BatchOperation>List of operations to execute
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BatchFile
impl<'de> Deserialize<'de> for BatchFile
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 BatchFile
impl RefUnwindSafe for BatchFile
impl Send for BatchFile
impl Sync for BatchFile
impl Unpin for BatchFile
impl UnsafeUnpin for BatchFile
impl UnwindSafe for BatchFile
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