pub struct CustomFieldContextUpdateDetails {
pub name: Option<String>,
pub description: Option<String>,
}
Expand description
CustomFieldContextUpdateDetails : Details of a custom field context.
Fields§
§name: Option<String>
The name of the custom field context. The name must be unique. The maximum length is 255 characters.
description: Option<String>
The description of the custom field context. The maximum length is 255 characters.
Implementations§
Source§impl CustomFieldContextUpdateDetails
impl CustomFieldContextUpdateDetails
Sourcepub fn new() -> CustomFieldContextUpdateDetails
pub fn new() -> CustomFieldContextUpdateDetails
Details of a custom field context.
Trait Implementations§
Source§impl Clone for CustomFieldContextUpdateDetails
impl Clone for CustomFieldContextUpdateDetails
Source§fn clone(&self) -> CustomFieldContextUpdateDetails
fn clone(&self) -> CustomFieldContextUpdateDetails
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<'de> Deserialize<'de> for CustomFieldContextUpdateDetails
impl<'de> Deserialize<'de> for CustomFieldContextUpdateDetails
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 CustomFieldContextUpdateDetails
impl PartialEq for CustomFieldContextUpdateDetails
Source§fn eq(&self, other: &CustomFieldContextUpdateDetails) -> bool
fn eq(&self, other: &CustomFieldContextUpdateDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CustomFieldContextUpdateDetails
Auto Trait Implementations§
impl Freeze for CustomFieldContextUpdateDetails
impl RefUnwindSafe for CustomFieldContextUpdateDetails
impl Send for CustomFieldContextUpdateDetails
impl Sync for CustomFieldContextUpdateDetails
impl Unpin for CustomFieldContextUpdateDetails
impl UnwindSafe for CustomFieldContextUpdateDetails
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