pub struct AttributeString {
pub key: String,
pub xtype: String,
pub status: String,
pub required: bool,
pub array: EmptyOption<bool>,
pub size: i64,
pub default: EmptyOption<String>,
}Fields§
§key: String§xtype: String§status: String§required: bool§array: EmptyOption<bool>§size: i64§default: EmptyOption<String>Implementations§
Trait Implementations§
Source§impl Clone for AttributeString
impl Clone for AttributeString
Source§fn clone(&self) -> AttributeString
fn clone(&self) -> AttributeString
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 AttributeString
impl Debug for AttributeString
Source§impl<'de> Deserialize<'de> for AttributeString
impl<'de> Deserialize<'de> for AttributeString
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 AttributeString
impl Display for AttributeString
Auto Trait Implementations§
impl Freeze for AttributeString
impl RefUnwindSafe for AttributeString
impl Send for AttributeString
impl Sync for AttributeString
impl Unpin for AttributeString
impl UnwindSafe for AttributeString
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