pub struct FieldInfo {
pub name: String,
pub description: String,
pub type: String,
pub is_complex: bool,
pub is_optional: bool,
pub is_list: bool,
}
Fields§
§name: String
§description: String
§type: String
§is_complex: bool
§is_optional: bool
§is_list: bool
Auto Trait Implementations§
impl Freeze for FieldInfo
impl RefUnwindSafe for FieldInfo
impl Send for FieldInfo
impl Sync for FieldInfo
impl Unpin for FieldInfo
impl UnwindSafe for FieldInfo
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