pub struct BatchOperation {
pub name: String,
pub metadata: BatchMetadata,
pub done: bool,
pub result: Option<OperationResult>,
}Expand description
Represents a long-running operation from the Gemini API.
Fields§
§name: StringThe resource name of the operation
metadata: BatchMetadataMetadata about the batch operation
done: boolWhether the operation is complete
result: Option<OperationResult>The result of the operation (if complete)
Trait Implementations§
Source§impl Debug for BatchOperation
impl Debug for BatchOperation
Source§impl<'de> Deserialize<'de> for BatchOperation
impl<'de> Deserialize<'de> for BatchOperation
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 BatchOperation
impl RefUnwindSafe for BatchOperation
impl Send for BatchOperation
impl Sync for BatchOperation
impl Unpin for BatchOperation
impl UnwindSafe for BatchOperation
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