pub struct AttributeString {
pub key: String,
pub type: String,
pub status: String,
pub error: String,
pub required: bool,
pub array: Option<Option<bool>>,
pub size: i32,
pub default: Option<Option<String>>,
}Expand description
AttributeString : AttributeString
Fields§
§key: StringAttribute Key.
type: StringAttribute type.
status: StringAttribute status. Possible values: available, processing, deleting, stuck, or failed
error: StringError message. Displays error generated on failure of creating or deleting an attribute.
required: boolIs attribute required?
array: Option<Option<bool>>Is attribute an array?
size: i32Attribute size.
default: Option<Option<String>>Default value for attribute when not provided. Cannot be set when attribute is required.
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 (const: unstable) · 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 PartialEq for AttributeString
impl PartialEq for AttributeString
Source§fn eq(&self, other: &AttributeString) -> bool
fn eq(&self, other: &AttributeString) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AttributeString
impl Serialize for AttributeString
impl StructuralPartialEq 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 UnsafeUnpin 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