pub struct FieldParameters {
pub optional: bool,
pub explicit: bool,
pub application: bool,
pub private: bool,
pub default_value: Option<i64>,
pub tag: Option<i32>,
pub string_type: i32,
pub time_type: i32,
pub set: bool,
pub omit_empty: bool,
}
Fields§
§optional: bool
§explicit: bool
§application: bool
§private: bool
§default_value: Option<i64>
§tag: Option<i32>
§string_type: i32
§time_type: i32
§set: bool
§omit_empty: bool
Trait Implementations§
Source§impl Debug for FieldParameters
impl Debug for FieldParameters
Source§impl Default for FieldParameters
impl Default for FieldParameters
Source§fn default() -> FieldParameters
fn default() -> FieldParameters
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FieldParameters
impl RefUnwindSafe for FieldParameters
impl Send for FieldParameters
impl Sync for FieldParameters
impl Unpin for FieldParameters
impl UnwindSafe for FieldParameters
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