pub struct BatchFieldInfo {
pub name: String,
pub field_type: String,
pub required: bool,
pub description: String,
}Expand description
A single field in the batch operation schema.
Fields§
§name: StringField name as it appears in the batch file
field_type: StringType description (e.g., “string”, “string[]”, “map<string, string>”)
required: boolWhether the field is required
description: StringHuman/agent-readable description
Trait Implementations§
Source§impl Debug for BatchFieldInfo
impl Debug for BatchFieldInfo
Source§impl<'de> Deserialize<'de> for BatchFieldInfo
impl<'de> Deserialize<'de> for BatchFieldInfo
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 BatchFieldInfo
impl RefUnwindSafe for BatchFieldInfo
impl Send for BatchFieldInfo
impl Sync for BatchFieldInfo
impl Unpin for BatchFieldInfo
impl UnsafeUnpin for BatchFieldInfo
impl UnwindSafe for BatchFieldInfo
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