pub struct ClassificationLabelValue {
pub fields: Option<Vec<ClassificationLabelFieldValue>>,
pub label_id: Option<String>,
}Expand description
Classification Labels applied to the email message. Classification Labels are different from Gmail inbox labels. Only used for Google Workspace accounts. Learn more about classification labels.
This type is not used in any activity, and only used as part of another schema.
Fields§
§fields: Option<Vec<ClassificationLabelFieldValue>>Field values for the given classification label ID.
label_id: Option<String>Required. The canonical or raw alphanumeric classification label ID. Maps to the ID field of the Google Drive Label resource.
Trait Implementations§
Source§impl Clone for ClassificationLabelValue
impl Clone for ClassificationLabelValue
Source§fn clone(&self) -> ClassificationLabelValue
fn clone(&self) -> ClassificationLabelValue
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 Debug for ClassificationLabelValue
impl Debug for ClassificationLabelValue
Source§impl Default for ClassificationLabelValue
impl Default for ClassificationLabelValue
Source§fn default() -> ClassificationLabelValue
fn default() -> ClassificationLabelValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClassificationLabelValue
impl<'de> Deserialize<'de> for ClassificationLabelValue
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 Serialize for ClassificationLabelValue
impl Serialize for ClassificationLabelValue
impl Part for ClassificationLabelValue
Auto Trait Implementations§
impl Freeze for ClassificationLabelValue
impl RefUnwindSafe for ClassificationLabelValue
impl Send for ClassificationLabelValue
impl Sync for ClassificationLabelValue
impl Unpin for ClassificationLabelValue
impl UnwindSafe for ClassificationLabelValue
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