pub struct AttachedCustomField {
pub custom_field_id: Uuid,
pub custom_field: CustomField,
pub order: usize,
pub required: bool,
}Fields§
§custom_field_id: UuidID of the custom field.
custom_field: CustomFieldSchema for a custom field of type text.
order: usizeOrder of the custom field in the resource.
required: boolWhether the value is required for this custom field.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AttachedCustomField
impl<'de> Deserialize<'de> for AttachedCustomField
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
Auto Trait Implementations§
impl Freeze for AttachedCustomField
impl RefUnwindSafe for AttachedCustomField
impl Send for AttachedCustomField
impl Sync for AttachedCustomField
impl Unpin for AttachedCustomField
impl UnwindSafe for AttachedCustomField
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