pub struct AttributeInteger {
pub key: String,
pub xtype: String,
pub status: String,
pub required: bool,
pub array: EmptyOption<bool>,
pub min: EmptyOption<i64>,
pub max: EmptyOption<i64>,
pub default: EmptyOption<i64>,
}Fields§
§key: String§xtype: String§status: String§required: bool§array: EmptyOption<bool>§min: EmptyOption<i64>§max: EmptyOption<i64>§default: EmptyOption<i64>Implementations§
Trait Implementations§
Source§impl Clone for AttributeInteger
impl Clone for AttributeInteger
Source§fn clone(&self) -> AttributeInteger
fn clone(&self) -> AttributeInteger
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AttributeInteger
impl Debug for AttributeInteger
Source§impl<'de> Deserialize<'de> for AttributeInteger
impl<'de> Deserialize<'de> for AttributeInteger
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
Source§impl Display for AttributeInteger
impl Display for AttributeInteger
Auto Trait Implementations§
impl Freeze for AttributeInteger
impl RefUnwindSafe for AttributeInteger
impl Send for AttributeInteger
impl Sync for AttributeInteger
impl Unpin for AttributeInteger
impl UnwindSafe for AttributeInteger
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