pub struct EnumOptionInsertRequest {
pub after_enum_option: String,
pub before_enum_option: String,
pub enum_option: String,
}Fields§
§after_enum_option: StringAn existing enum option within this custom field after which the new enum option should be inserted. Cannot be provided together with before_enum_option.
before_enum_option: StringAn existing enum option within this custom field before which the new enum option should be inserted. Cannot be provided together with after_enum_option.
enum_option: StringThe gid of the enum option to relocate.
Trait Implementations§
Source§impl Clone for EnumOptionInsertRequest
impl Clone for EnumOptionInsertRequest
Source§fn clone(&self) -> EnumOptionInsertRequest
fn clone(&self) -> EnumOptionInsertRequest
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 EnumOptionInsertRequest
impl Debug for EnumOptionInsertRequest
Source§impl Default for EnumOptionInsertRequest
impl Default for EnumOptionInsertRequest
Source§fn default() -> EnumOptionInsertRequest
fn default() -> EnumOptionInsertRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EnumOptionInsertRequest
impl<'de> Deserialize<'de> for EnumOptionInsertRequest
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 EnumOptionInsertRequest
impl Display for EnumOptionInsertRequest
Auto Trait Implementations§
impl Freeze for EnumOptionInsertRequest
impl RefUnwindSafe for EnumOptionInsertRequest
impl Send for EnumOptionInsertRequest
impl Sync for EnumOptionInsertRequest
impl Unpin for EnumOptionInsertRequest
impl UnsafeUnpin for EnumOptionInsertRequest
impl UnwindSafe for EnumOptionInsertRequest
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