pub struct CustomFieldName {
pub id: u64,
pub name: String,
}
Expand description
a type used to list all the custom field ids and names
Fields§
§id: u64
numeric id
name: String
display name
Trait Implementations§
Source§impl Clone for CustomFieldName
impl Clone for CustomFieldName
Source§fn clone(&self) -> CustomFieldName
fn clone(&self) -> CustomFieldName
Returns a copy 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 CustomFieldName
impl Debug for CustomFieldName
Source§impl<'de> Deserialize<'de> for CustomFieldName
impl<'de> Deserialize<'de> for CustomFieldName
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 CustomFieldName
impl PartialEq for CustomFieldName
Source§impl Serialize for CustomFieldName
impl Serialize for CustomFieldName
impl Eq for CustomFieldName
impl StructuralPartialEq for CustomFieldName
Auto Trait Implementations§
impl Freeze for CustomFieldName
impl RefUnwindSafe for CustomFieldName
impl Send for CustomFieldName
impl Sync for CustomFieldName
impl Unpin for CustomFieldName
impl UnwindSafe for CustomFieldName
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.