pub struct DocumentCustomField {
pub field: CustomFieldId,
pub value: String,
}Expand description
Custom field value of an existing document.
Fields§
§field: CustomFieldIdUnique identifier of the custom field.
value: StringValue of the custom field.
Trait Implementations§
Source§impl Clone for DocumentCustomField
impl Clone for DocumentCustomField
Source§fn clone(&self) -> DocumentCustomField
fn clone(&self) -> DocumentCustomField
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 DocumentCustomField
impl Debug for DocumentCustomField
Source§impl<'de> Deserialize<'de> for DocumentCustomField
impl<'de> Deserialize<'de> for DocumentCustomField
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 DocumentCustomField
impl RefUnwindSafe for DocumentCustomField
impl Send for DocumentCustomField
impl Sync for DocumentCustomField
impl Unpin for DocumentCustomField
impl UnsafeUnpin for DocumentCustomField
impl UnwindSafe for DocumentCustomField
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